page.tsx 566 B

12345678910111213141516171819
  1. "use client";
  2. import Footer from "@/components/Footer";
  3. import Header from "@/components/landing/Header";
  4. import HeroSection from "@/components/landing/HeroSection";
  5. import HowItWorksSection from "@/components/landing/HowItWorksSection";
  6. import CTASection from "@/components/landing/CTASection";
  7. export default function HomePage() {
  8. return (
  9. <div className="min-h-screen bg-gradient-to-br from-blue-50 to-indigo-50">
  10. <Header />
  11. <HeroSection />
  12. <HowItWorksSection />
  13. <CTASection />
  14. <Footer variant="landing" />
  15. </div>
  16. );
  17. }