| import { Navbar } from "@/components/Navbar"; | |
| import { HeroSection } from "@/components/home/HeroSection"; | |
| import { StatsBar } from "@/components/home/StatsBar"; | |
| import { FeaturesSection } from "@/components/home/FeaturesSection"; | |
| import { HowItWorks } from "@/components/home/HowItWorks"; | |
| import { BentoShowcase } from "@/components/home/BentoShowcase"; | |
| import { TestimonialsSection } from "@/components/home/TestimonialsSection"; | |
| import { CTASection } from "@/components/home/CTASection"; | |
| import { Footer } from "@/components/Footer"; | |
| export default function Home() { | |
| return ( | |
| <main> | |
| <Navbar /> | |
| <HeroSection /> | |
| <StatsBar /> | |
| <FeaturesSection /> | |
| <HowItWorks /> | |
| <BentoShowcase /> | |
| <TestimonialsSection /> | |
| <CTASection /> | |
| <Footer /> | |
| </main> | |
| ); | |
| } | |