From 714c24870b2db733119bb7b6791abae313be3348 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Fri, 31 Jul 2026 18:44:23 +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..87b7a50 --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,31 @@ +import HeroSection from "@/components/sections/HeroSection" +import OurHeritageSection from "@/components/sections/OurHeritageSection" +import ArtisanStoriesSection from "@/components/sections/ArtisanStoriesSection" +import CampaignsSection from "@/components/sections/CampaignsSection" +import FeaturedProductsSection from "@/components/sections/FeaturedProductsSection" +import MostPopularSection from "@/components/sections/MostPopularSection" +import GallerySection from "@/components/sections/GallerySection" +import BrandCarouselSection from "@/components/sections/BrandCarouselSection" +import AdvertBannerSection from "@/components/sections/AdvertBannerSection" +import ProductCarouselSection from "@/components/sections/ProductCarouselSection" +import ShopCTASection from "@/components/sections/ShopCTASection" +import ContactSection from "@/components/sections/ContactSection" + +export default function HomePage() { + return ( + <> + + + + + + + + + + + + + + ) +}