From 51b2d5242f26e4260f5b7cbc69981cfd55675cb1 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 14:33:37 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index fd7df85..65adf0a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -90,13 +90,13 @@ export default function LandingPage() { animationType="slide-up" products={[ { - id: "tshirt-basic", name: "Essential T-Shirt", price: "$1,200", imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-with-hand-her-shoulder_23-2147617533.jpg", imageAlt: "casual t-shirt basic white mens", initialQuantity: 1 + id: "tshirt-basic", name: "Essential T-Shirt", price: "$1,200", imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-with-hand-her-shoulder_23-2147617533.jpg", imageAlt: "casual t-shirt basic white mens", initialQuantity: 1, status: "in-stock" }, { - id: "jeans-classic", name: "Classic Blue Jeans", price: "$2,500", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-sitting-tree-talking-phone_1303-10769.jpg", imageAlt: "blue jeans denim classic fit", initialQuantity: 1 + id: "jeans-classic", name: "Classic Blue Jeans", price: "$2,500", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-sitting-tree-talking-phone_1303-10769.jpg", imageAlt: "blue jeans denim classic fit", initialQuantity: 1, status: "in-delivery" }, { - id: "sundress-casual", name: "Casual Summer Dress", price: "$1,800", imageSrc: "http://img.b2bpic.net/free-photo/fashion-stylish-beautiful-young-brunette-woman-model-summer-hipster-colorful-casual-clothes-posing-street_158538-12300.jpg", imageAlt: "women's sundress casual summer", initialQuantity: 1 + id: "sundress-casual", name: "Casual Summer Dress", price: "$1,800", imageSrc: "http://img.b2bpic.net/free-photo/fashion-stylish-beautiful-young-brunette-woman-model-summer-hipster-colorful-casual-clothes-posing-street_158538-12300.jpg", imageAlt: "women's sundress casual summer", initialQuantity: 1, status: "reserved" } ]} buttonAnimation="slide-up" -- 2.49.1