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