30 lines
960 B
TypeScript
30 lines
960 B
TypeScript
import { Navigation } from "@/components/navigation";
|
|
import { HeroSection } from "@/components/hero-section";
|
|
import { HowItWorksSection } from "@/components/how-it-works-section";
|
|
import { ServicesSection } from "@/components/services-section";
|
|
import { ImpactSection } from "@/components/impact-section";
|
|
import { PackagesSection } from "@/components/packages-section";
|
|
import { TestimonialsSection } from "@/components/testimonials-section";
|
|
import { FAQSection } from "@/components/faq-section";
|
|
import { ContactSection } from "@/components/contact-section";
|
|
import { Footer } from "@/components/footer";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<Navigation />
|
|
<main>
|
|
<HeroSection />
|
|
<HowItWorksSection />
|
|
<ServicesSection />
|
|
<ImpactSection />
|
|
<PackagesSection />
|
|
<TestimonialsSection />
|
|
<FAQSection />
|
|
<ContactSection />
|
|
</main>
|
|
<Footer />
|
|
</>
|
|
);
|
|
}
|