From 9f8cbe4ac7f7453b29ce36b63d0a739094bbc80f Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Mon, 27 Jul 2026 18:59:53 +0000 Subject: [PATCH] Deploy --- src/app/page.tsx | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 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..047b6f5 --- /dev/null +++ b/src/app/page.tsx @@ -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 ( + <> + + + + + + + + + + + + + + + ); +}