This commit is contained in:
Vula Builder
2026-07-29 18:15:18 +00:00
parent 4bdab35ba9
commit fbbb63bf88
+35
View File
@@ -0,0 +1,35 @@
import HeroSection from '@/components/sections/HeroSection'
import MzansiStorySection from "@/components/sections/MzansiStorySection"
import FeaturedProductsSection from "@/components/sections/FeaturedProductsSection"
import FreshKicksSection from "@/components/sections/FreshKicksSection"
import MostPopularSection from "@/components/sections/MostPopularSection"
import ProductCarouselSection from "@/components/sections/ProductCarouselSection"
import BrandCarouselSection from "@/components/sections/BrandCarouselSection"
import HypeCampaignsSection from "@/components/sections/HypeCampaignsSection"
import StreetStyleGallerySection from "@/components/sections/StreetStyleGallerySection"
import ShopTheVibeSection from "@/components/sections/ShopTheVibeSection"
import DealBannerSection from "@/components/sections/DealBannerSection"
import AdvertBannerSection from "@/components/sections/AdvertBannerSection"
import KeepMzansiConnectedSection from "@/components/sections/KeepMzansiConnectedSection"
import JoinTheCrewSection from "@/components/sections/JoinTheCrewSection"
export default function HomePage() {
return (
<main>
<HeroSection />
<MzansiStorySection />
<FeaturedProductsSection />
<FreshKicksSection />
<MostPopularSection />
<ProductCarouselSection />
<BrandCarouselSection />
<HypeCampaignsSection />
<StreetStyleGallerySection />
<ShopTheVibeSection />
<DealBannerSection />
<AdvertBannerSection />
<KeepMzansiConnectedSection />
<JoinTheCrewSection />
</main>
)
}