diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index aa53932..92aea9b 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -42,22 +42,34 @@ export default function MenuPage() { gridVariant="three-columns-all-equal-width" products={[ { - id: "1", name: "Classic Chicken Box", price: "₤50", imageSrc: "http://img.b2bpic.net/free-photo/roasted-chicken-legs-wings-wooden-board-with-lettuce-pepper-high-quality-photo_114579-69091.jpg?_wi=2", imageAlt: "Crispy fried chicken box", onProductClick: () => { typeof window !== "undefined" && window.location.href = "/product-details?product=1"; } + id: "1", name: "Classic Chicken Box", price: "₤50", imageSrc: "http://img.b2bpic.net/free-photo/roasted-chicken-legs-wings-wooden-board-with-lettuce-pepper-high-quality-photo_114579-69091.jpg?_wi=2", imageAlt: "Crispy fried chicken box", onProductClick: () => { + if (typeof window !== "undefined") window.location.href = "/product-details?product=1"; + } }, { - id: "2", name: "Crispy Chicken Sandwich", price: "₤35", imageSrc: "http://img.b2bpic.net/free-photo/delicious-sandwich-with-green-salad-tomatoes-ham-inside-plate-with-french-fries_140725-29971.jpg", imageAlt: "Golden fried chicken sandwich", onProductClick: () => { typeof window !== "undefined" && window.location.href = "/product-details?product=2"; } + id: "2", name: "Crispy Chicken Sandwich", price: "₤35", imageSrc: "http://img.b2bpic.net/free-photo/delicious-sandwich-with-green-salad-tomatoes-ham-inside-plate-with-french-fries_140725-29971.jpg", imageAlt: "Golden fried chicken sandwich", onProductClick: () => { + if (typeof window !== "undefined") window.location.href = "/product-details?product=2"; + } }, { - id: "3", name: "Family Chicken Meal", price: "₤60", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-french-fries_140725-114450.jpg?_wi=2", imageAlt: "Complete chicken meal combo", onProductClick: () => { typeof window !== "undefined" && window.location.href = "/product-details?product=3"; } + id: "3", name: "Family Chicken Meal", price: "₤60", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-french-fries_140725-114450.jpg?_wi=2", imageAlt: "Complete chicken meal combo", onProductClick: () => { + if (typeof window !== "undefined") window.location.href = "/product-details?product=3"; + } }, { - id: "4", name: "Golden Fries & Sides", price: "₤20", imageSrc: "http://img.b2bpic.net/free-photo/side-view-crackers-black-pan-wooden-cutting-board-dark-horizontal_176474-4184.jpg?_wi=1", imageAlt: "Golden crispy fries", onProductClick: () => { typeof window !== "undefined" && window.location.href = "/product-details?product=4"; } + id: "4", name: "Golden Fries & Sides", price: "₤20", imageSrc: "http://img.b2bpic.net/free-photo/side-view-crackers-black-pan-wooden-cutting-board-dark-horizontal_176474-4184.jpg?_wi=1", imageAlt: "Golden crispy fries", onProductClick: () => { + if (typeof window !== "undefined") window.location.href = "/product-details?product=4"; + } }, { - id: "5", name: "Spicy Chicken Combo", price: "₤55", imageSrc: "http://img.b2bpic.net/free-photo/top-view-chicken-with-copy-space_23-2148454892.jpg", imageAlt: "Spicy chicken combo", onProductClick: () => { typeof window !== "undefined" && window.location.href = "/product-details?product=5"; } + id: "5", name: "Spicy Chicken Combo", price: "₤55", imageSrc: "http://img.b2bpic.net/free-photo/top-view-chicken-with-copy-space_23-2148454892.jpg", imageAlt: "Spicy chicken combo", onProductClick: () => { + if (typeof window !== "undefined") window.location.href = "/product-details?product=5"; + } }, { - id: "6", name: "Chicken Wings Special", price: "₤40", imageSrc: "http://img.b2bpic.net/free-photo/vertical-view-crispy-fried-chicken-with-mayonnaise-ketchup_140725-54247.jpg", imageAlt: "Crispy chicken wings", onProductClick: () => { typeof window !== "undefined" && window.location.href = "/product-details?product=6"; } + id: "6", name: "Chicken Wings Special", price: "₤40", imageSrc: "http://img.b2bpic.net/free-photo/vertical-view-crispy-fried-chicken-with-mayonnaise-ketchup_140725-54247.jpg", imageAlt: "Crispy chicken wings", onProductClick: () => { + if (typeof window !== "undefined") window.location.href = "/product-details?product=6"; + } } ]} /> diff --git a/src/app/page.tsx b/src/app/page.tsx index 3d488bc..680ab8e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -97,16 +97,24 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" products={[ { - id: "1", name: "Chicken Box", price: "₤50", imageSrc: "http://img.b2bpic.net/free-photo/roasted-chicken-legs-wings-wooden-board-with-lettuce-pepper-high-quality-photo_114579-69091.jpg?_wi=2", imageAlt: "Crispy fried chicken box", onProductClick: () => { typeof window !== "undefined" && window.location.href = "/product-details?product=1"; } + id: "1", name: "Chicken Box", price: "₤50", imageSrc: "http://img.b2bpic.net/free-photo/roasted-chicken-legs-wings-wooden-board-with-lettuce-pepper-high-quality-photo_114579-69091.jpg?_wi=2", imageAlt: "Crispy fried chicken box", onProductClick: () => { + if (typeof window !== "undefined") window.location.href = "/product-details?product=1"; + } }, { - id: "2", name: "Chicken Sandwich", price: "₤35", imageSrc: "http://img.b2bpic.net/free-photo/delicious-sandwich-with-green-salad-tomatoes-ham-inside-plate-with-french-fries_140725-29971.jpg", imageAlt: "Golden fried chicken sandwich", onProductClick: () => { typeof window !== "undefined" && window.location.href = "/product-details?product=2"; } + id: "2", name: "Chicken Sandwich", price: "₤35", imageSrc: "http://img.b2bpic.net/free-photo/delicious-sandwich-with-green-salad-tomatoes-ham-inside-plate-with-french-fries_140725-29971.jpg", imageAlt: "Golden fried chicken sandwich", onProductClick: () => { + if (typeof window !== "undefined") window.location.href = "/product-details?product=2"; + } }, { - id: "3", name: "Chicken Meal", price: "₤60", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-french-fries_140725-114450.jpg?_wi=2", imageAlt: "Complete chicken meal combo", onProductClick: () => { typeof window !== "undefined" && window.location.href = "/product-details?product=3"; } + id: "3", name: "Chicken Meal", price: "₤60", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-chicken-french-fries_140725-114450.jpg?_wi=2", imageAlt: "Complete chicken meal combo", onProductClick: () => { + if (typeof window !== "undefined") window.location.href = "/product-details?product=3"; + } }, { - id: "4", name: "Fries & Sides", price: "₤20", imageSrc: "http://img.b2bpic.net/free-photo/side-view-crackers-black-pan-wooden-cutting-board-dark-horizontal_176474-4184.jpg?_wi=1", imageAlt: "Golden crispy fries", onProductClick: () => { typeof window !== "undefined" && window.location.href = "/product-details?product=4"; } + id: "4", name: "Fries & Sides", price: "₤20", imageSrc: "http://img.b2bpic.net/free-photo/side-view-crackers-black-pan-wooden-cutting-board-dark-horizontal_176474-4184.jpg?_wi=1", imageAlt: "Golden crispy fries", onProductClick: () => { + if (typeof window !== "undefined") window.location.href = "/product-details?product=4"; + } } ]} />