Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3662337eb8 | |||
| 2a3fb0f7f2 | |||
| de38e8e5cc | |||
| 1295f3d8a6 | |||
| 8e235be20c | |||
| f8ce8fb8a6 | |||
| b916324aaf | |||
| 553f5d2bf1 |
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user