From e9e97004762e2dc6f3675c946d37ddc1d871279a Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 28 Jul 2026 13:27:22 +0000 Subject: [PATCH] Deploy --- src/app/page.tsx | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/app/page.tsx diff --git a/src/app/page.tsx b/src/app/page.tsx new file mode 100644 index 0000000..7ac2da1 --- /dev/null +++ b/src/app/page.tsx @@ -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 ( + <> + + + + + + + + + + + + + + + + + ) +}