From 1d43cb026ca0f4d1784c348ca8474a2b63abbf4b Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Mon, 27 Jul 2026 17:10:19 +0000 Subject: [PATCH] Deploy --- src/app/page.tsx | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 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..87b5859 --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,31 @@ +import FeaturedProductsSection from "@/components/sections/FeaturedProductsSection" +import MostPopularSection from "@/components/sections/MostPopularSection" +import AdvertBannerSection from "@/components/sections/AdvertBannerSection" +import BrandCarouselSection from "@/components/sections/BrandCarouselSection" +import ProductCarouselSection from "@/components/sections/ProductCarouselSection" +import HeroSection from "@/components/sections/HeroSection" +import BrandStorySection from "@/components/sections/BrandStorySection" +import CampaignsSection from "@/components/sections/CampaignsSection" +import GallerySection from "@/components/sections/GallerySection" +import NewArrivalsSection from "@/components/sections/NewArrivalsSection" +import JoinMovementSection from "@/components/sections/JoinMovementSection" +import ContactSection from "@/components/sections/ContactSection" + +export default function HomePage() { + return ( + <> + + + + + + + + + + + + + + ) +}