From 8caf41a485af7c6c06b54cde98215d5af6f25be1 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Mon, 27 Jul 2026 17:52:30 +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..08c6211 --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,35 @@ +import FeaturedProductsSection from "@/components/sections/FeaturedProductsSection" +import MostPopularSection from "@/components/sections/MostPopularSection" +import AdvertBannerSection from "@/components/sections/AdvertBannerSection" +import BrandCarouselSection from "@/components/sections/BrandCarouselSection" +import ProductCarouselSection from "@/components/sections/ProductCarouselSection" +import SowetoHeroSection from "@/components/sections/SowetoHeroSection" +import MzansiFeaturedSection from "@/components/sections/MzansiFeaturedSection" +import SowetoRootsSection from "@/components/sections/SowetoRootsSection" +import LimitedDropCampaignSection from "@/components/sections/LimitedDropCampaignSection" +import SowetoLookbookSection from "@/components/sections/SowetoLookbookSection" +import KasiLoveSection from "@/components/sections/KasiLoveSection" +import FreshThreadsSection from "@/components/sections/FreshThreadsSection" +import ShopTheVibeSection from "@/components/sections/ShopTheVibeSection" +import SowetoConnectSection from "@/components/sections/SowetoConnectSection" + +export default function HomePage() { + return ( + <> + + + + + + + + + + + + + + + + ) +}