This commit is contained in:
Vula Builder
2026-08-01 16:26:29 +00:00
parent 216ac8722e
commit 11784bed0a
+33
View File
@@ -0,0 +1,33 @@
import KasiHeroSection from "@/components/sections/KasiHeroSection"
import KasiSelectSection from "@/components/sections/KasiSelectSection"
import FeaturedProductsSection from "@/components/sections/FeaturedProductsSection"
import FreshKasiDropsSection from "@/components/sections/FreshKasiDropsSection"
import ProductCarouselSection from "@/components/sections/ProductCarouselSection"
import MostPopularSection from "@/components/sections/MostPopularSection"
import SowetoStyleGallerySection from "@/components/sections/SowetoStyleGallerySection"
import AdvertBannerSection from "@/components/sections/AdvertBannerSection"
import BrandCarouselSection from "@/components/sections/BrandCarouselSection"
import AmacampaignsSection from "@/components/sections/AmacampaignsSection"
import IndabaYethuSection from "@/components/sections/IndabaYethuSection"
import StayFreshSection from "@/components/sections/StayFreshSection"
import SowetoBaseSection from "@/components/sections/SowetoBaseSection"
export default function HomePage() {
return (
<>
<KasiHeroSection />
<KasiSelectSection />
<FeaturedProductsSection />
<FreshKasiDropsSection />
<ProductCarouselSection />
<MostPopularSection />
<SowetoStyleGallerySection />
<AdvertBannerSection />
<BrandCarouselSection />
<AmacampaignsSection />
<IndabaYethuSection />
<StayFreshSection />
<SowetoBaseSection />
</>
)
}