import HeroSection from "@/sections/HeroSection";
import ValueProps from "@/sections/ValueProps";
import TrendingProducts from "@/sections/TrendingProducts";
import CategoriesSection from "@/sections/CategoriesSection";
import BundleSection from "@/sections/BundleSection";
import Testimonials from "@/sections/Testimonials";
import FAQSection from "@/sections/FAQSection";
import StatsSection from "@/sections/StatsSection";

export default function Home() {
  return (
    <main>
      <HeroSection />
      <ValueProps />
      <TrendingProducts />
      <CategoriesSection />
      <BundleSection />
      <Testimonials />
      <StatsSection />
      <FAQSection />
    </main>
  );
}
