website/app/page.tsx

38 lines
838 B
TypeScript

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";
import { ContactSection } from "@/components/ContactSection";
import { Navbar } from "../components/Navbar";
export default function Home() {
return (
<main>
<Navbar />
<HeroSection />
<About />
<Services />
<Specialties />
<ClientFocus />
<Finances />
<Location />
<ContactSection />
<Footer />
</main>
);
}