From d8544dcc908d15a47a88d8d386fce99c829a606d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 21 Apr 2026 10:08:02 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 33 ++++++++++++++++----------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index b94751a..fbce5f7 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 ContactCenter from '@/components/sections/contact/ContactCenter'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; +import FooterBase from '@/components/sections/footer/FooterBase'; import HeroOverlay from '@/components/sections/hero/HeroOverlay'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; @@ -52,10 +52,10 @@ export default function LandingPage() { showBlur={true} avatars={[ { src: "http://img.b2bpic.net/free-photo/full-shot-smiley-man-woman-home_23-2148899724.jpg", alt: "Smiley man and woman at home" }, - { src: "http://img.b2bpic.net/free-photo/woman-sitting-new-home-man-decorating-living-room_329181-270.jpg", alt: "Woman sitting in new home and man decorating" }, - { src: "http://img.b2bpic.net/free-photo/medium-shot-smiley-couple-indoors_23-2148889785.jpg", alt: "Medium shot smiley couple indoors" }, - { src: "http://img.b2bpic.net/free-photo/enthusiastic-asian-woman-sits-floor-with-smartphone-raise-hand-up-cheering-celebrating_1258-191628.jpg", alt: "Asian woman dancing at home" }, - { src: "http://img.b2bpic.net/free-photo/young-carefree-couple-having-fun-together-home_637285-12599.jpg", alt: "Young carefree couple at home" }, + { src: "http://img.b2bpic.net/woman-sitting-new-home-man-decorating-living-room_329181-270.jpg", alt: "Woman sitting in new home and man decorating" }, + { src: "http://img.b2bpic.net/medium-shot-smiley-couple-indoors_23-2148889785.jpg", alt: "Medium shot smiley couple indoors" }, + { src: "http://img.b2bpic.net/enthusiastic-asian-woman-sits-floor-with-smartphone-raise-hand-up-cheering-celebrating_1258-191628.jpg", alt: "Asian woman dancing at home" }, + { src: "http://img.b2bpic.net/young-carefree-couple-having-fun-together-home_637285-12599.jpg", alt: "Young carefree couple at home" }, ]} avatarText="Trusted by 5,000+ local families" /> @@ -113,9 +113,9 @@ export default function LandingPage() { { id: "p1", brand: "Signature", name: "Luxury Fabric Sofa", price: "₱25,000", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/empty-photo-frame-wall-blue-chair_23-2149454909.jpg" }, { id: "p2", brand: "Signature", name: "Oak Dining Table", price: "₱18,500", rating: 5, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/minimalist-kitchen-interior-design_23-2151008700.jpg" }, { id: "p3", brand: "Modern", name: "Ergonomic Desk", price: "₱8,900", rating: 4, reviewCount: "62", imageSrc: "http://img.b2bpic.net/free-photo/laptop-black-leather-sofa_53876-63470.jpg" }, - { id: "p4", brand: "Comfort", name: "King Size Bed", price: "₱32,000", rating: 5, reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/frame-mockup-modern-bedroom-with-empty-poster-frame-ai-generative_123827-23462.jpg" }, - { id: "p5", brand: "Modern", name: "Nightstand Unit", price: "₱4,500", rating: 4, reviewCount: "30", imageSrc: "http://img.b2bpic.net/free-photo/bed-with-nightstand-pendant-lamp-showroom-styled-bedroom_169016-71049.jpg" }, - { id: "p6", brand: "Decor", name: "Ambient Floor Lamp", price: "₱2,200", rating: 5, reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/modern-3d-lamp-design_23-2151047505.jpg" }, + { id: "p4", brand: "Comfort", name: "King Size Bed", price: "₱32,000", rating: 5, reviewCount: "45", imageSrc: "http://img.b2bpic.net/frame-mockup-modern-bedroom-with-empty-poster-frame-ai-generative_123827-23462.jpg" }, + { id: "p5", brand: "Modern", name: "Nightstand Unit", price: "₱4,500", rating: 4, reviewCount: "30", imageSrc: "http://img.b2bpic.net/bed-with-nightstand-pendant-lamp-showroom-styled-bedroom_169016-71049.jpg" }, + { id: "p6", brand: "Decor", name: "Ambient Floor Lamp", price: "₱2,200", rating: 5, reviewCount: "150", imageSrc: "http://img.b2bpic.net/modern-3d-lamp-design_23-2151047505.jpg" }, ]} title="Curated Collections" description="Explore our latest arrivals in contemporary home decor." @@ -174,22 +174,21 @@ export default function LandingPage() {
-