This commit is contained in:
Vula Builder
2026-07-28 13:27:22 +00:00
parent bec5f60ce3
commit e9e9700476
+37
View File
@@ -0,0 +1,37 @@
import HeroSection from "@/components/sections/HeroSection"
import LatestDropsSection from "@/components/sections/LatestDropsSection"
import FeaturedProductsSection from "@/components/sections/FeaturedProductsSection"
import MostPopularSection from "@/components/sections/MostPopularSection"
import ProductCarouselSection from "@/components/sections/ProductCarouselSection"
import FeaturedCollectionsSection from "@/components/sections/FeaturedCollectionsSection"
import BrandCarouselSection from "@/components/sections/BrandCarouselSection"
import AdvertBannerSection from "@/components/sections/AdvertBannerSection"
import AboutVaultSection from "@/components/sections/AboutVaultSection"
import CampaignsSection from "@/components/sections/CampaignsSection"
import GallerySection from "@/components/sections/GallerySection"
import JournalSection from "@/components/sections/JournalSection"
import AuthenticationGuaranteeSection from "@/components/sections/AuthenticationGuaranteeSection"
import ShopTheVaultCTASection from "@/components/sections/ShopTheVaultCTASection"
import ContactVaultSection from "@/components/sections/ContactVaultSection"
export default function HomePage() {
return (
<>
<HeroSection />
<LatestDropsSection />
<FeaturedProductsSection />
<MostPopularSection />
<ProductCarouselSection />
<FeaturedCollectionsSection />
<BrandCarouselSection />
<AdvertBannerSection />
<AboutVaultSection />
<CampaignsSection />
<GallerySection />
<JournalSection />
<AuthenticationGuaranteeSection />
<ShopTheVaultCTASection />
<ContactVaultSection />
</>
)
}