import { HeroSection } from "@/components/home/hero-section";
import { StatsBanner } from "@/components/home/stats-banner";
import { FeaturedCategories } from "@/components/home/featured-categories";
import { TrendingProducts } from "@/components/home/trending-products";
import { B2BSection } from "@/components/home/b2b-section";
import { TopVendors } from "@/components/home/top-vendors";
import { CTASection } from "@/components/home/cta-section";

export default function HomePage() {
  return (
    <>
      <HeroSection />
      <StatsBanner />
      <FeaturedCategories />
      <TrendingProducts />
      <B2BSection />
      <TopVendors />
      <CTASection />
    </>
  );
}
