23 lines
475 B
TypeScript
23 lines
475 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";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main>
|
|
<HeroSection />
|
|
|
|
<About />
|
|
|
|
<Services />
|
|
|
|
<ContactSection />
|
|
|
|
<Footer />
|
|
</main>
|
|
);
|
|
}
|