This commit is contained in:
Vula Builder
2026-07-28 09:03:25 +00:00
parent 764e862465
commit 8e4349d36b
+35
View File
@@ -0,0 +1,35 @@
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 HeroSection from "@/components/sections/HeroSection";
import IngredientStorySection from "@/components/sections/IngredientStorySection";
import BestsellersGridSection from "@/components/sections/BestsellersGridSection";
import CampaignSection from "@/components/sections/CampaignSection";
import GallerySection from "@/components/sections/GallerySection";
import BotanicalWisdomSection from "@/components/sections/BotanicalWisdomSection";
import CTAShopSection from "@/components/sections/CTAShopSection";
import NewsletterSection from "@/components/sections/NewsletterSection";
import ContactSection from "@/components/sections/ContactSection";
export default function HomePage() {
return (
<>
<HeroSection />
<AdvertBannerSection />
<FeaturedProductsSection />
<BestsellersGridSection />
<IngredientStorySection />
<BotanicalWisdomSection />
<CampaignSection />
<GallerySection />
<MostPopularSection />
<BrandCarouselSection />
<ProductCarouselSection />
<CTAShopSection />
<NewsletterSection />
<ContactSection />
</>
);
}