From 3ec45b1abf8aaa0fa5e86f2f5cdf581916c27937 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Mon, 27 Jul 2026 18:06:12 +0000 Subject: [PATCH] Deploy --- src/app/page.tsx | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 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..e81a8d0 --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,35 @@ +import HeroSection from "@/components/sections/HeroSection" +import BrandStorySection from "@/components/sections/BrandStorySection" +import FeaturedProductsSection from "@/components/sections/FeaturedProductsSection" +import LimitedEditionDropsSection from "@/components/sections/LimitedEditionDropsSection" +import NewArrivalsSection from "@/components/sections/NewArrivalsSection" +import MostPopularSection from "@/components/sections/MostPopularSection" +import ProductCarouselSection from "@/components/sections/ProductCarouselSection" +import BrandCarouselSection from "@/components/sections/BrandCarouselSection" +import StreetStyleLookbookSection from "@/components/sections/StreetStyleLookbookSection" +import AdvertBannerSection from "@/components/sections/AdvertBannerSection" +import ShopTheLookCTASection from "@/components/sections/ShopTheLookCTASection" +import FamShoutoutsSection from "@/components/sections/FamShoutoutsSection" +import NewsletterSection from "@/components/sections/NewsletterSection" +import ContactSection from "@/components/sections/ContactSection" + +export default function HomePage() { + return ( +
+ + + + + + + + + + + + + + +
+ ) +}