Merge version_3 into main #2

Merged
bender merged 2 commits from version_3 into main 2026-03-05 11:23:02 +00:00
2 changed files with 10 additions and 6 deletions

View File

@@ -1419,4 +1419,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -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'),
},
]}
/>
</div>
@@ -94,7 +97,8 @@ export default function LandingPage() {
<TextSplitAbout
title="Why People Love Kubaba"
description={[
"Authentic Arabian spices sourced from trusted suppliers, blended perfectly to create unforgettable flavors that transport you to the heart of the Arabian Peninsula.", "Large, generous portions that satisfy your appetite without breaking the bank. Perfect for families, groups of friends, and food lovers on a budget.", "Casual, welcoming ambience ideal for group dining, celebrations, and late-night hangouts. Our friendly staff ensures every visit is memorable."]}
"Authentic Arabian spices sourced from trusted suppliers, blended perfectly to create unforgettable flavors that transport you to the heart of the Arabian Peninsula.", "Large, generous portions that satisfy your appetite without breaking the bank. Perfect for families, groups of friends, and food lovers on a budget.", "Casual, welcoming ambience ideal for group dining, celebrations, and late-night hangouts. Our friendly staff ensures every visit is memorable."
]}
useInvertedBackground={false}
showBorder={true}
buttons={[{ text: "View Full Menu", href: "#" }]}
@@ -188,4 +192,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}