This commit is contained in:
Vula Builder
2026-07-28 12:39:38 +00:00
parent 04485a5e83
commit 443e91c598
+39
View File
@@ -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 (
<>
<HeritageGlowHeroSection />
<BrandCarouselSection />
<AdvertBannerSection />
<FeaturedProductsSection />
<IndigenousBotanicalsFeaturedSection />
<BestsellersGridSection />
<MostPopularSection />
<ProductCarouselSection />
<RootedHeritageStorySection />
<HarvestPromoCampaignSection />
<UbuntuGlowTestimonialsSection />
<IndigenousIngredientGallerySection />
<IkhambiBlogSection />
<VisitOurWorkshopSection />
<EnquiryFormSection />
<EarthyNewsletterSection />
</>
);
}