This commit is contained in:
Vula Builder
2026-07-27 18:59:53 +00:00
parent df8526555d
commit 9f8cbe4ac7
+33
View File
@@ -0,0 +1,33 @@
import HeroSection from "@/components/sections/HeroSection";
import BrandCarouselSection from "@/components/sections/BrandCarouselSection";
import FeaturedProductsSection from "@/components/sections/FeaturedProductsSection";
import NewArrivalsSection from "@/components/sections/NewArrivalsSection";
import MostPopularSection from "@/components/sections/MostPopularSection";
import ProductCarouselSection from "@/components/sections/ProductCarouselSection";
import DropCampaignsSection from "@/components/sections/DropCampaignsSection";
import StreetStyleGallerySection from "@/components/sections/StreetStyleGallerySection";
import OriginRootsSection from "@/components/sections/OriginRootsSection";
import AdvertBannerSection from "@/components/sections/AdvertBannerSection";
import RepTheStreetsSection from "@/components/sections/RepTheStreetsSection";
import JoinTheHustleCTASection from "@/components/sections/JoinTheHustleCTASection";
import ContactKhulumaSection from "@/components/sections/ContactKhulumaSection";
export default function HomePage() {
return (
<>
<HeroSection />
<BrandCarouselSection />
<FeaturedProductsSection />
<NewArrivalsSection />
<MostPopularSection />
<ProductCarouselSection />
<DropCampaignsSection />
<StreetStyleGallerySection />
<OriginRootsSection />
<AdvertBannerSection />
<RepTheStreetsSection />
<JoinTheHustleCTASection />
<ContactKhulumaSection />
</>
);
}