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 { ContactSection } from "@/components/ContactSection";
|
2025-11-06 12:56:20 +00:00
|
|
|
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>
|
2025-11-06 12:56:20 +00:00
|
|
|
<Navbar />
|
2025-11-06 12:02:10 +00:00
|
|
|
<HeroSection />
|
|
|
|
|
|
|
|
|
|
<About />
|
|
|
|
|
|
|
|
|
|
<Services />
|
|
|
|
|
|
|
|
|
|
<ContactSection />
|
|
|
|
|
|
|
|
|
|
<Footer />
|
|
|
|
|
</main>
|
2025-11-05 11:28:53 +00:00
|
|
|
);
|
|
|
|
|
}
|