| 12345678910111213141516171819 |
- "use client";
- import Footer from "@/components/Footer";
- import Header from "@/components/landing/Header";
- import HeroSection from "@/components/landing/HeroSection";
- import HowItWorksSection from "@/components/landing/HowItWorksSection";
- import CTASection from "@/components/landing/CTASection";
- export default function HomePage() {
- return (
- <div className="min-h-screen bg-gradient-to-br from-blue-50 to-indigo-50">
- <Header />
- <HeroSection />
- <HowItWorksSection />
- <CTASection />
- <Footer variant="landing" />
- </div>
- );
- }
|