From c98537984fe668a030b696e07e5904ef6abed78d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 05:23:05 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 40 +++++++++++++++++++++++++++------------- 1 file changed, 27 insertions(+), 13 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index b491525..09d1fdb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -74,13 +74,16 @@ export default function LandingPage() { products={[ { id: "1", brand: "Elegance Studio", name: "Minimalist Linen Dress", price: "$89.00", rating: 5, - reviewCount: "2.4k", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-wearing-fashionable-clothes-walking-down-street_839833-3813.jpg?_wi=1", imageAlt: "Minimalist Linen Dress in cream color"}, + reviewCount: "2.4k", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-wearing-fashionable-clothes-walking-down-street_839833-3813.jpg", imageAlt: "Minimalist Linen Dress in cream color" + }, { id: "2", brand: "Elegance Studio", name: "Premium Cotton Tee", price: "$45.00", rating: 5, - reviewCount: "1.8k", imageSrc: "http://img.b2bpic.net/free-photo/casual-dressed-man-heading-work-outdoor-photoshoot_53876-125340.jpg?_wi=1", imageAlt: "Premium Cotton Tee in natural white"}, + reviewCount: "1.8k", imageSrc: "http://img.b2bpic.net/free-photo/casual-dressed-man-heading-work-outdoor-photoshoot_53876-125340.jpg", imageAlt: "Premium Cotton Tee in natural white" + }, { id: "3", brand: "Elegance Studio", name: "Classic Blazer", price: "$125.00", rating: 5, - reviewCount: "3.1k", imageSrc: "http://img.b2bpic.net/free-photo/woman-happy-coat-winter-outside_1303-12993.jpg?_wi=1", imageAlt: "Classic Blazer in charcoal gray"}, + reviewCount: "3.1k", imageSrc: "http://img.b2bpic.net/free-photo/woman-happy-coat-winter-outside_1303-12993.jpg", imageAlt: "Classic Blazer in charcoal gray" + }, ]} /> @@ -94,13 +97,16 @@ export default function LandingPage() { features={[ { id: 1, - title: "Premium Materials", description: "We source only the finest natural fabrics and materials to ensure comfort and durability in every garment.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-wearing-fashionable-clothes-walking-down-street_839833-3813.jpg?_wi=2", imageAlt: "Premium fabric close-up"}, + title: "Premium Materials", description: "We source only the finest natural fabrics and materials to ensure comfort and durability in every garment.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-wearing-fashionable-clothes-walking-down-street_839833-3813.jpg", imageAlt: "Premium fabric close-up" + }, { id: 2, - title: "Sustainable Production", description: "Our ethical manufacturing process ensures fair labor practices and minimal environmental impact.", imageSrc: "http://img.b2bpic.net/free-photo/casual-dressed-man-heading-work-outdoor-photoshoot_53876-125340.jpg?_wi=2", imageAlt: "Sustainable production facility"}, + title: "Sustainable Production", description: "Our ethical manufacturing process ensures fair labor practices and minimal environmental impact.", imageSrc: "http://img.b2bpic.net/free-photo/casual-dressed-man-heading-work-outdoor-photoshoot_53876-125340.jpg", imageAlt: "Sustainable production facility" + }, { id: 3, - title: "Expert Styling", description: "Each piece is designed by experienced fashion professionals who understand modern aesthetics and comfort needs.", imageSrc: "http://img.b2bpic.net/free-photo/woman-happy-coat-winter-outside_1303-12993.jpg?_wi=2", imageAlt: "Designer working on collection"}, + title: "Expert Styling", description: "Each piece is designed by experienced fashion professionals who understand modern aesthetics and comfort needs.", imageSrc: "http://img.b2bpic.net/free-photo/woman-happy-coat-winter-outside_1303-12993.jpg", imageAlt: "Designer working on collection" + }, ]} /> @@ -109,6 +115,7 @@ export default function LandingPage() { @@ -175,13 +186,16 @@ export default function LandingPage() { socialLinks={[ { icon: Instagram, - href: "https://instagram.com", ariaLabel: "Instagram"}, + href: "https://instagram.com", ariaLabel: "Instagram" + }, { icon: Facebook, - href: "https://facebook.com", ariaLabel: "Facebook"}, + href: "https://facebook.com", ariaLabel: "Facebook" + }, { icon: Twitter, - href: "https://twitter.com", ariaLabel: "Twitter"}, + href: "https://twitter.com", ariaLabel: "Twitter" + }, ]} /> -- 2.49.1