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 ( + <> + + + + + + + + + + + + + + + + + ) +}