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