From 54891315f2dcd7bddb363ec33f2f05fe661f29eb Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 29 Jul 2026 19:04:15 +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..b1508f0 --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,35 @@ +import HeroSection from '@/components/sections/HeroSection' +import JustDroppedSection from "@/components/sections/JustDroppedSection" +import FeaturedProductsSection from "@/components/sections/FeaturedProductsSection" +import MostPopularSection from "@/components/sections/MostPopularSection" +import UrbanAmbitionSection from "@/components/sections/UrbanAmbitionSection" +import StyleObsessionsCampaignSection from "@/components/sections/StyleObsessionsCampaignSection" +import DivaLookbookSection from "@/components/sections/DivaLookbookSection" +import StyleDiariesSection from "@/components/sections/StyleDiariesSection" +import BrandCarouselSection from "@/components/sections/BrandCarouselSection" +import ProductCarouselSection from "@/components/sections/ProductCarouselSection" +import AdvertBannerSection from "@/components/sections/AdvertBannerSection" +import ShopNowCtaSection from "@/components/sections/ShopNowCtaSection" +import ShippingAndReturnsSection from "@/components/sections/ShippingAndReturnsSection" +import ConnectWithDivaSection from "@/components/sections/ConnectWithDivaSection" + +export default function HomePage() { + return ( + <> + + + + + + + + + + + + + + + + ) +}