website/app/page.tsx

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