From 9501a91c1835aade337b637487082e6164c9e71e Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sat, 1 Aug 2026 17:20:22 +0000 Subject: [PATCH] Deploy --- src/app/page.tsx | 27 +++++++++++++++++++++++++++ 1 file changed, 27 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..9d6b0dc --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,27 @@ +import HeroSection from "@/components/sections/HeroSection"; +import DropBannerHypeSection from "@/components/sections/DropBannerHypeSection"; +import FeaturedProductsSection from "@/components/sections/FeaturedProductsSection"; +import MostPopularSection from "@/components/sections/MostPopularSection"; +import CampaignLookbookSection from "@/components/sections/CampaignLookbookSection"; +import GallerySection from "@/components/sections/GallerySection"; +import CommunityHighlightsSection from "@/components/sections/CommunityHighlightsSection"; +import AboutKasiDripSection from "@/components/sections/AboutKasiDripSection"; +import CTAShopDropsSection from "@/components/sections/CTAShopDropsSection"; +import CollabEnquirySection from "@/components/sections/CollabEnquirySection"; + +export default function HomePage() { + return ( + <> + + + + + + + + + + + + ); +}