4 Commits

Author SHA1 Message Date
2028840fd4 Merge version_2 into main
Merge version_2 into main
2026-03-05 11:23:06 +00:00
62e638b097 Merge version_3 into main
Merge version_3 into main
2026-03-05 11:23:02 +00:00
f76c63c276 Update src/app/page.tsx 2026-03-05 11:22:58 +00:00
b3fe5b116b Update src/app/layout.tsx 2026-03-05 11:22:58 +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

@@ -82,11 +82,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>
@@ -95,7 +98,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: "#" }]}
@@ -190,4 +194,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}