From 3c7f1bd22b54d27707c753342f8057e688b0edcb Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 19 May 2026 19:03:05 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 264 ++++++++++------------------------------------- 1 file changed, 52 insertions(+), 212 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f13880b..de129b8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,10 +2,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; @@ -32,21 +32,13 @@ export default function LandingPage() { @@ -55,15 +47,12 @@ export default function LandingPage() {
@@ -232,50 +152,20 @@ export default function LandingPage() { useInvertedBackground={true} testimonials={[ { - id: "t1", - name: "Marc L.", - handle: "@marcl", - testimonial: "Finally, clothes that fit perfectly and look great.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/smiling-middle-aged-woman-showing-ok-sign_1262-17571.jpg", - imageAlt: "happy customer portrait", - }, + id: "t1", name: "Marc L.", handle: "@marcl", testimonial: "Finally, clothes that fit perfectly and look great.", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/smiling-middle-aged-woman-showing-ok-sign_1262-17571.jpg", imageAlt: "happy customer portrait"}, { - id: "t2", - name: "Jean-Paul D.", - handle: "@jp", - testimonial: "Excellent quality and fast delivery.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/young-woman-white-clothes-smiling_23-2148056219.jpg", - imageAlt: "confident man portrait", - }, + id: "t2", name: "Jean-Paul D.", handle: "@jp", testimonial: "Excellent quality and fast delivery.", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/young-woman-white-clothes-smiling_23-2148056219.jpg", imageAlt: "confident man portrait"}, { - id: "t3", - name: "Thomas G.", - handle: "@tg", - testimonial: "Great experience, will definitely order again.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/young-man-portrait-with-flowers_23-2148830404.jpg", - imageAlt: "stylish man portrait", - }, + id: "t3", name: "Thomas G.", handle: "@tg", testimonial: "Great experience, will definitely order again.", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/young-man-portrait-with-flowers_23-2148830404.jpg", imageAlt: "stylish man portrait"}, { - id: "t4", - name: "Alex B.", - handle: "@alexb", - testimonial: "The best selection of plus size men's wear.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-brunette-woman-white-t-shirt-denim-pink-jacket-posing-with-smile-cute-bar_197531-17038.jpg", - imageAlt: "relaxed man portrait", - }, + id: "t4", name: "Alex B.", handle: "@alexb", testimonial: "The best selection of plus size men's wear.", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-brunette-woman-white-t-shirt-denim-pink-jacket-posing-with-smile-cute-bar_197531-17038.jpg", imageAlt: "relaxed man portrait"}, { - id: "t5", - name: "Sam R.", - handle: "@samr", - testimonial: "Comfort meets style, highly recommended.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/party-girl-with-yellow-color-effect_23-2147635310.jpg", - imageAlt: "happy customer portrait", - }, + id: "t5", name: "Sam R.", handle: "@samr", testimonial: "Comfort meets style, highly recommended.", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/party-girl-with-yellow-color-effect_23-2147635310.jpg", imageAlt: "happy customer portrait"}, ]} showRating={true} title="Customer Stories" @@ -289,20 +179,11 @@ export default function LandingPage() { useInvertedBackground={false} faqs={[ { - id: "f1", - title: "Shipping times?", - content: "Usually 3-5 business days.", - }, + id: "f1", title: "Shipping times?", content: "Usually 3-5 business days."}, { - id: "f2", - title: "Easy returns?", - content: "Yes, 30 days hassle-free.", - }, + id: "f2", title: "Easy returns?", content: "Yes, 30 days hassle-free."}, { - id: "f3", - title: "Size guide?", - content: "Check our detailed chart on product pages.", - }, + id: "f3", title: "Size guide?", content: "Check our detailed chart on product pages."}, ]} imageSrc="http://img.b2bpic.net/free-photo/close-up-portrait-grinning-old-fashioned-man-grandfather-with-clock_1157-39167.jpg" title="Need Help?" @@ -314,65 +195,24 @@ export default function LandingPage() {
-