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 ( + <> + + + + + + + + + + + + + + + ); +}