From 62eff0fcf0d29c5aaa036c724d730a95d16cf666 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 28 Jul 2026 07:32:27 +0000 Subject: [PATCH] Deploy --- src/app/page.tsx | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 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..655a602 --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,37 @@ +import FeaturedProductsSection from "@/components/sections/FeaturedProductsSection" +import MostPopularSection from "@/components/sections/MostPopularSection" +import AdvertBannerSection from "@/components/sections/AdvertBannerSection" +import BrandCarouselSection from "@/components/sections/BrandCarouselSection" +import ProductCarouselSection from "@/components/sections/ProductCarouselSection" +import NdlovuHeritageHeroSection from "@/components/sections/NdlovuHeritageHeroSection" +import BotanicalTreasuresSection from "@/components/sections/BotanicalTreasuresSection" +import IndigenousBotanicalsStorySection from "@/components/sections/IndigenousBotanicalsStorySection" +import BestsellingBotanicalsGridSection from "@/components/sections/BestsellingBotanicalsGridSection" +import NurturingCampaignsSection from "@/components/sections/NurturingCampaignsSection" +import RootedMomentsGallerySection from "@/components/sections/RootedMomentsGallerySection" +import VoicesOfNurtureTestimonialsSection from "@/components/sections/VoicesOfNurtureTestimonialsSection" +import ConnectWithUsSection from "@/components/sections/ConnectWithUsSection" +import VisitOurPretoriaOasisSection from "@/components/sections/VisitOurPretoriaOasisSection" +import RootedNewsletterSection from "@/components/sections/RootedNewsletterSection" + +export default function HomePage() { + return ( + <> + + + + + + + + + + + + + + + + + ) +}