This commit is contained in:
Vula Builder
2026-07-27 17:10:19 +00:00
parent 991e10f0bc
commit 1d43cb026c
+31
View File
@@ -0,0 +1,31 @@
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 BrandStorySection from "@/components/sections/BrandStorySection"
import CampaignsSection from "@/components/sections/CampaignsSection"
import GallerySection from "@/components/sections/GallerySection"
import NewArrivalsSection from "@/components/sections/NewArrivalsSection"
import JoinMovementSection from "@/components/sections/JoinMovementSection"
import ContactSection from "@/components/sections/ContactSection"
export default function HomePage() {
return (
<>
<HeroSection />
<BrandStorySection />
<FeaturedProductsSection />
<NewArrivalsSection />
<MostPopularSection />
<AdvertBannerSection />
<CampaignsSection />
<GallerySection />
<BrandCarouselSection />
<ProductCarouselSection />
<JoinMovementSection />
<ContactSection />
</>
)
}