From fbbb63bf88bd51fd2cdc4d6d858a00cf4168d482 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 29 Jul 2026 18:15:18 +0000 Subject: [PATCH] Deploy --- src/app/page.tsx | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/app/page.tsx diff --git a/src/app/page.tsx b/src/app/page.tsx new file mode 100644 index 0000000..2519d3e --- /dev/null +++ b/src/app/page.tsx @@ -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 ( +
+ + + + + + + + + + + + + + +
+ ) +}