This commit is contained in:
Vula Builder
2026-07-31 18:44:23 +00:00
parent a8ef27bce9
commit 714c24870b
+31
View File
@@ -0,0 +1,31 @@
import HeroSection from "@/components/sections/HeroSection"
import OurHeritageSection from "@/components/sections/OurHeritageSection"
import ArtisanStoriesSection from "@/components/sections/ArtisanStoriesSection"
import CampaignsSection from "@/components/sections/CampaignsSection"
import FeaturedProductsSection from "@/components/sections/FeaturedProductsSection"
import MostPopularSection from "@/components/sections/MostPopularSection"
import GallerySection from "@/components/sections/GallerySection"
import BrandCarouselSection from "@/components/sections/BrandCarouselSection"
import AdvertBannerSection from "@/components/sections/AdvertBannerSection"
import ProductCarouselSection from "@/components/sections/ProductCarouselSection"
import ShopCTASection from "@/components/sections/ShopCTASection"
import ContactSection from "@/components/sections/ContactSection"
export default function HomePage() {
return (
<>
<HeroSection />
<OurHeritageSection />
<ArtisanStoriesSection />
<CampaignsSection />
<FeaturedProductsSection />
<MostPopularSection />
<GallerySection />
<BrandCarouselSection />
<AdvertBannerSection />
<ProductCarouselSection />
<ShopCTASection />
<ContactSection />
</>
)
}