diff --git a/src/app/page.tsx b/src/app/page.tsx
new file mode 100644
index 0000000..d30e3eb
--- /dev/null
+++ b/src/app/page.tsx
@@ -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 */}
+
+
+ {/* Brand narrative: community impact, artisans, values */}
+
+
+ {/* Curated handcrafted products front and centre */}
+
+
+ {/* Best-selling pieces that resonate with SA homes */}
+
+
+ {/* Promotional banner driving to the full catalogue */}
+
+
+ {/* Rotating showcase of seasonal or designer collections */}
+
+
+ {/* Highlight Durban-based artisans and local sourcing */}
+
+
+ {/* Interactive style discovery for guests and diaspora */}
+
+
+ {/* Direct community connection — talk to us */}
+
+
+ {/* Newsletter signup for stories and new drops */}
+
+ >
+ );
+}