From b3fe5b116b5bd19d6bac24b433566cd3372e3417 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 11:22:58 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6c40d9f..0f9f155 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1419,4 +1419,4 @@ export default function RootLayout({ ); -} +} \ No newline at end of file -- 2.49.1 From f76c63c276e2b8d04a98a859aab8dd7218e34db0 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 11:22:58 +0000 Subject: [PATCH 2/2] 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 d565ec1..5528d03 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -81,11 +81,14 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" products={[ { - id: "1", name: "Mandhi Platter", price: "₹299–₹549", imageSrc: "http://img.b2bpic.net/free-photo/top-view-rice-with-carrot-cooked-with-lamb-served-with-yogurt-salad_141793-2449.jpg?_wi=2", imageAlt: "Kubaba's signature mandhi with aromatic rice and grilled meat"}, + id: "1", name: "Mandhi Platter", price: "₹299–₹549", imageSrc: "http://img.b2bpic.net/free-photo/top-view-rice-with-carrot-cooked-with-lamb-served-with-yogurt-salad_141793-2449.jpg?_wi=2", imageAlt: "Kubaba's signature mandhi with aromatic rice and grilled meat", onProductClick: () => window.open('https://wa.me/919048888888?text=I%20want%20to%20order%20Mandhi%20Platter', '_blank'), + }, { - id: "2", name: "Grilled Chicken", price: "₹249–₹449", imageSrc: "http://img.b2bpic.net/free-photo/side-view-chicken-kebab-with-red-onion-greens-dried-barberry-pita_141793-4838.jpg", imageAlt: "Tender grilled chicken with Arabian spices"}, + id: "2", name: "Grilled Chicken", price: "₹249–₹449", imageSrc: "http://img.b2bpic.net/free-photo/side-view-chicken-kebab-with-red-onion-greens-dried-barberry-pita_141793-4838.jpg", imageAlt: "Tender grilled chicken with Arabian spices", onProductClick: () => window.open('https://wa.me/919048888888?text=I%20want%20to%20order%20Grilled%20Chicken', '_blank'), + }, { - id: "3", name: "Mixed Grill", price: "₹399–₹699", imageSrc: "http://img.b2bpic.net/free-photo/mixed-fried-meat-with-pomegranate-sauce_140725-3461.jpg", imageAlt: "Mixed grill platter with variety of meats"}, + id: "3", name: "Mixed Grill", price: "₹399–₹699", imageSrc: "http://img.b2bpic.net/free-photo/mixed-fried-meat-with-pomegranate-sauce_140725-3461.jpg", imageAlt: "Mixed grill platter with variety of meats", onProductClick: () => window.open('https://wa.me/919048888888?text=I%20want%20to%20order%20Mixed%20Grill', '_blank'), + }, ]} /> @@ -94,7 +97,8 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1