8 Commits

Author SHA1 Message Date
3662337eb8 Merge version_3 into main
Merge version_3 into main
2026-03-11 18:30:09 +00:00
2a3fb0f7f2 Update src/app/page.tsx 2026-03-11 18:30:06 +00:00
de38e8e5cc Merge version_2 into main
Merge version_2 into main
2026-03-11 18:28:56 +00:00
1295f3d8a6 Update src/app/page.tsx 2026-03-11 18:28:52 +00:00
8e235be20c Merge version_1 into main
Merge version_1 into main
2026-03-11 18:27:32 +00:00
f8ce8fb8a6 Merge version_1 into main
Merge version_1 into main
2026-03-11 18:27:02 +00:00
b916324aaf Merge version_1 into main
Merge version_1 into main
2026-03-11 18:25:26 +00:00
553f5d2bf1 Merge version_1 into main
Merge version_1 into main
2026-03-11 18:24:37 +00:00

View File

@@ -65,6 +65,10 @@ export default function HomePage() {
},
];
const handleProductClick = (productId: string, productName: string) => {
window.location.href = `/product/${productId}`;
};
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
@@ -138,19 +142,19 @@ export default function HomePage() {
products={[
{
id: "1", brand: "StylePro", name: "Classic White Shirt", price: "₹1,299", rating: 5,
reviewCount: "2.4k", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-smiling-stylish-hipster-lambersexual-modelmodern-man-dressed-white-shirt-fashion-male-posing-street-background-sunglasses-outdoors-sunset_158538-20630.jpg", imageAlt: "Classic white premium shirt"
reviewCount: "2.4k", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-smiling-stylish-hipster-lambersexual-modelmodern-man-dressed-white-shirt-fashion-male-posing-street-background-sunglasses-outdoors-sunset_158538-20630.jpg", imageAlt: "Classic white premium shirt", onProductClick: () => 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"