website/app/page.tsx

26 lines
540 B
TypeScript
Raw 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 { 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 />
<ContactSection />
<Footer />
</main>
2025-11-05 11:28:53 +00:00
);
}