From 443e91c5987b49583cad6491a2834c61c303b6c6 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 28 Jul 2026 12:39:38 +0000 Subject: [PATCH] Deploy --- src/app/page.tsx | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 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..79ef4de --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,39 @@ +import HeritageGlowHeroSection from "@/components/sections/HeritageGlowHeroSection"; +import BrandCarouselSection from "@/components/sections/BrandCarouselSection"; +import AdvertBannerSection from "@/components/sections/AdvertBannerSection"; +import FeaturedProductsSection from "@/components/sections/FeaturedProductsSection"; +import IndigenousBotanicalsFeaturedSection from "@/components/sections/IndigenousBotanicalsFeaturedSection"; +import BestsellersGridSection from "@/components/sections/BestsellersGridSection"; +import MostPopularSection from "@/components/sections/MostPopularSection"; +import ProductCarouselSection from "@/components/sections/ProductCarouselSection"; +import RootedHeritageStorySection from "@/components/sections/RootedHeritageStorySection"; +import HarvestPromoCampaignSection from "@/components/sections/HarvestPromoCampaignSection"; +import UbuntuGlowTestimonialsSection from "@/components/sections/UbuntuGlowTestimonialsSection"; +import IndigenousIngredientGallerySection from "@/components/sections/IndigenousIngredientGallerySection"; +import IkhambiBlogSection from "@/components/sections/IkhambiBlogSection"; +import VisitOurWorkshopSection from "@/components/sections/VisitOurWorkshopSection"; +import EnquiryFormSection from "@/components/sections/EnquiryFormSection"; +import EarthyNewsletterSection from "@/components/sections/EarthyNewsletterSection"; + +export default function HomePage() { + return ( + <> + + + + + + + + + + + + + + + + + + ); +}