website/app/page.tsx

38 lines
838 B
TypeScript
Raw Permalink Normal View History

2025-11-06 12:02:10 +00:00
import Section from "../components/Section";
import { Footer } from "../components/Footer";
import { HeroSection } from "@/components/Hero";
import { About } from "@/components/About";
import { Services } from "@/components/Services";
import { Specialties } from "@/components/Specialties";
import { ClientFocus } from "@/components/ClientFocus";
import { Finances } from "@/components/Finances";
import { Location } from "@/components/Location";
2025-11-06 12:02:10 +00:00
import { ContactSection } from "@/components/ContactSection";
import { Navbar } from "../components/Navbar";
2025-11-05 11:28:53 +00:00
export default function Home() {
return (
2025-11-06 12:02:10 +00:00
<main>
<Navbar />
2025-11-06 12:02:10 +00:00
<HeroSection />
<About />
<Services />
<Specialties />
<ClientFocus />
<Finances />
<Location />
2025-11-06 12:02:10 +00:00
<ContactSection />
<Footer />
</main>
2025-11-05 11:28:53 +00:00
);
}