diff --git a/src/app/page.tsx b/src/app/page.tsx new file mode 100644 index 0000000..5dc168f --- /dev/null +++ b/src/app/page.tsx @@ -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 ( + <> + + + + + + + + + + + + + + + + ); +}