import BentoGrid from "@/features/home/bento-grid1";
import CallToAction from "@/features/home/call-to-action1";
import Contact from "@/features/home/contact1";
import FAQs from "@/features/home/faqs1";
import Features from "@/features/home/features1";
import Footer from "@/features/home/footer1";
import Hero from "@/features/home/hero1";
import Navigation from "@/features/home/navigation1";
import { Pricing } from "@/features/home/shared/pricing";
import Stats from "@/features/home/stats1";
import Testimonials from "@/features/home/testimonials1";
export default function Home() {
return (
<div className="flex min-h-screen flex-col">
<Navigation />
<main className="flex-1">
<Hero />
<Features />
<BentoGrid />
<Stats />
<Pricing />
<Testimonials />
<FAQs />
<Contact />
<CallToAction />
</main>
<Footer />
</div>
);
}