From 2a3fb0f7f28ff7c9e027041f718f47cadec6105a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 18:30:06 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a4cc953..2a35e52 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -65,6 +65,10 @@ export default function HomePage() { }, ]; + const handleProductClick = (productId: string, productName: string) => { + window.location.href = `/product/${productId}`; + }; + return ( handleProductClick("1", "Classic White Shirt") }, { id: "2", brand: "StylePro", name: "Premium Blue Denim", price: "₹2,499", rating: 5, - reviewCount: "3.1k", imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-hipster-male-student-sitting-bench-park_158538-12990.jpg", imageAlt: "Premium blue denim jeans" + reviewCount: "3.1k", imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-hipster-male-student-sitting-bench-park_158538-12990.jpg", imageAlt: "Premium blue denim jeans", onProductClick: () => handleProductClick("2", "Premium Blue Denim") }, { id: "3", brand: "StylePro", name: "Formal Black Pants", price: "₹1,899", rating: 5, - reviewCount: "1.8k", imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-black-shirt-jeans-standing-front-glass-door_23-2148164479.jpg", imageAlt: "Formal black dress pants" + reviewCount: "1.8k", imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-black-shirt-jeans-standing-front-glass-door_23-2148164479.jpg", imageAlt: "Formal black dress pants", onProductClick: () => handleProductClick("3", "Formal Black Pants") }, { id: "4", brand: "StylePro", name: "Casual Crew Neck Tee", price: "₹599", rating: 5, - reviewCount: "4.2k", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-smiling-stylish-hipster-lambersexual-model_158538-17997.jpg", imageAlt: "Casual crew neck t-shirt" + reviewCount: "4.2k", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-smiling-stylish-hipster-lambersexual-model_158538-17997.jpg", imageAlt: "Casual crew neck t-shirt", onProductClick: () => handleProductClick("4", "Casual Crew Neck Tee") }, ]} gridVariant="four-items-2x2-equal-grid" -- 2.49.1