From 17d7c1123d935d1738e383d9e60ce174d8773131 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 26 May 2026 08:10:39 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 92 ++++++++++++++++++++++++++++++++++++------------ 1 file changed, 69 insertions(+), 23 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 519bd1e..fa27749 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,17 +2,18 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; +import { Award, Shield, ShoppingBag, Sparkles, Star } from "lucide-react"; +import ContactText from '@/components/sections/contact/ContactText'; import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight'; -import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; -import { Award, Shield, ShoppingBag, Sparkles, Star } from "lucide-react"; +import EmailSignupForm from '@/components/form/EmailSignupForm'; export default function LandingPage() { return ( @@ -137,6 +138,10 @@ export default function LandingPage() { imageSrc="http://img.b2bpic.net/free-photo/close-up-hands-using-sewing-machine_23-2148754139.jpg" imageAlt="Tailor meticulously working on a suit" mediaAnimation="slide-up" + buttons={[ + { text: "Shop Our Collection", href: "#products" } + ]} + buttonAnimation="slide-up" /> @@ -161,6 +166,10 @@ export default function LandingPage() { tag="Our Advantages" tagIcon={Shield} tagAnimation="opacity" + buttons={[ + { text: "Discover Our Craftsmanship", href: "#products" } + ]} + buttonAnimation="slide-up" /> @@ -189,6 +198,10 @@ export default function LandingPage() { tag="Shop Now" tagIcon={ShoppingBag} tagAnimation="opacity" + buttons={[ + { text: "View All Products", href: "#products" } + ]} + buttonAnimation="slide-up" /> @@ -205,6 +218,10 @@ export default function LandingPage() { tagAnimation="opacity" speed={40} showCard={false} + buttons={[ + { text: "Our Quality Promise", href: "#about" } + ]} + buttonAnimation="slide-up" /> @@ -241,6 +258,10 @@ export default function LandingPage() { tag="Customer Reviews" tagIcon={Star} tagAnimation="opacity" + buttons={[ + { text: "Read Customer Stories", href: "#testimonials" } + ]} + buttonAnimation="slide-up" /> @@ -260,36 +281,61 @@ export default function LandingPage() { faqsAnimation="slide-up" textPosition="left" showCard={true} - /> - - -
-
+
+ + alert(`Inquiry from ${email} submitted!`)} + /> +
+ -- 2.49.1