This commit is contained in:
Vula Builder
2026-07-31 14:12:29 +00:00
parent 2849d06fd8
commit c61d6e92ba
+46
View File
@@ -0,0 +1,46 @@
import HeroSection from '@/components/sections/HeroSection';
import IkayaStorySection from "@/components/sections/IkayaStorySection";
import FeaturedProductsSection from "@/components/sections/FeaturedProductsSection";
import MostPopularSection from "@/components/sections/MostPopularSection";
import AdvertBannerSection from "@/components/sections/AdvertBannerSection";
import ProductCarouselSection from "@/components/sections/ProductCarouselSection";
import BrandCarouselSection from "@/components/sections/BrandCarouselSection";
import FindYourIkayaStyleSection from "@/components/sections/FindYourIkayaStyleSection";
import KhulumaNathiSection from "@/components/sections/KhulumaNathiSection";
import IkayaMailSection from "@/components/sections/IkayaMailSection";
export default function HomePage() {
return (
<>
{/* Hero section with primary messaging and CTA */}
<HeroSection />
{/* Brand narrative: community impact, artisans, values */}
<IkayaStorySection />
{/* Curated handcrafted products front and centre */}
<FeaturedProductsSection />
{/* Best-selling pieces that resonate with SA homes */}
<MostPopularSection />
{/* Promotional banner driving to the full catalogue */}
<AdvertBannerSection />
{/* Rotating showcase of seasonal or designer collections */}
<ProductCarouselSection />
{/* Highlight Durban-based artisans and local sourcing */}
<BrandCarouselSection />
{/* Interactive style discovery for guests and diaspora */}
<FindYourIkayaStyleSection />
{/* Direct community connection — talk to us */}
<KhulumaNathiSection />
{/* Newsletter signup for stories and new drops */}
<IkayaMailSection />
</>
);
}