diff --git a/src/app/page.tsx b/src/app/page.tsx index 6f80019..c4ad41c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -83,7 +83,7 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={false} products={[ - { id: "1", name: "Signature Cappuccino", price: "Rs. 450", variant: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/latte-coffee-art-table_1232-2739.jpg" }, + { id: "1", name: "Signature Cappuccino", price: "Rs. 450", variant: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/latte-coffee-art-table_1232-2739.jpg", onProductClick: () => window.location.href = "/signature-cappuccino" }, { id: "2", name: "Butter Croissant", price: "Rs. 300", variant: "Bakery", imageSrc: "http://img.b2bpic.net/free-photo/front-close-view-yummy-choco-eclairs-with-cookies-light-table-biscuit-cake-dessert_140725-123732.jpg" }, { id: "3", name: "Cold Brew Latte", price: "Rs. 550", variant: "Iced", imageSrc: "http://img.b2bpic.net/free-photo/coffee-cafe-drinks-beverage-menu-chalk-board_53876-23301.jpg" }, { id: "4", name: "Club Artisan", price: "Rs. 650", variant: "Gourmet", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fresh-sandwiches-arrangement-wooden-background_23-2148617311.jpg" }, @@ -148,4 +148,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file