This commit is contained in:
Vula Builder
2026-07-27 18:34:51 +00:00
parent d9752ba02b
commit 3ff3ec0e8c
+33
View File
@@ -0,0 +1,33 @@
import HeroSection from "@/components/sections/HeroSection"
import BrandStorySection from "@/components/sections/BrandStorySection"
import FeaturedProductsSection from "@/components/sections/FeaturedProductsSection"
import NewArrivalsSection from "@/components/sections/NewArrivalsSection"
import MostPopularSection from "@/components/sections/MostPopularSection"
import ProductCarouselSection from "@/components/sections/ProductCarouselSection"
import BrandCarouselSection from "@/components/sections/BrandCarouselSection"
import CampaignsSection from "@/components/sections/CampaignsSection"
import GallerySection from "@/components/sections/GallerySection"
import AdvertBannerSection from "@/components/sections/AdvertBannerSection"
import ShopCTASection from "@/components/sections/ShopCTASection"
import LocationSection from "@/components/sections/LocationSection"
import NewsletterSection from "@/components/sections/NewsletterSection"
export default function HomePage() {
return (
<>
<HeroSection />
<BrandStorySection />
<FeaturedProductsSection />
<NewArrivalsSection />
<MostPopularSection />
<ProductCarouselSection />
<BrandCarouselSection />
<CampaignsSection />
<GallerySection />
<AdvertBannerSection />
<ShopCTASection />
<LocationSection />
<NewsletterSection />
</>
)
}