3 Commits

Author SHA1 Message Date
5e66806be8 Update src/app/page.tsx 2026-03-10 09:11:30 +00:00
79b85e5238 Update src/app/layout.tsx 2026-03-10 09:11:30 +00:00
9e3e79b69b Merge version_1 into main
Merge version_1 into main
2026-03-10 09:09:23 +00:00
2 changed files with 13 additions and 41 deletions

View File

@@ -1,49 +1,22 @@
import type { Metadata } from "next"; import type { Metadata } from 'next';
import { Halant } from "next/font/google"; import { Inter } from 'next/font/google';
import { Inter } from "next/font/google"; import './globals.css';
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ['latin'] });
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Desert Spice Arabian BBQ & Mandi | Fine Dining Mahabubnagar", description: "Experience authentic Arabian mandi, legendary BBQ, and premium shawarma at Mahabubnagar's finest restaurant. Generous portions, consistent quality, and warm hospitality.", keywords: "Arabian BBQ, mandi restaurant, shawarma, fine dining Mahabubnagar, authentic Arabian food", robots: { title: 'Desert Spice - Authentic Arabian BBQ & Mandi',
index: true, description: 'Experience authentic Arabian cuisine at Desert Spice. Fine dining mandi, legendary BBQ, and generous family platters in Mahabubnagar.',
follow: true,
},
openGraph: {
title: "Desert Spice | Authentic Arabian Fine Dining", description: "Taste royal Arabian flavors. Premium mandi, BBQ, and family platters served with exceptional hospitality.", type: "website", siteName: "Desert Spice Arabian BBQ & Mandi", images: [
{
url: "http://img.b2bpic.net/free-photo/top-view-lamb-ribs-kebab-with-vegetable-salad-peppercorns-wooden-table_140725-11570.jpg", alt: "Arabian BBQ at Desert Spice"},
],
},
twitter: {
card: "summary_large_image", title: "Desert Spice | Arabian Fine Dining Mahabubnagar", description: "Authentic mandi, legendary BBQ, generous platters, warm hospitality.", images: ["http://img.b2bpic.net/free-photo/chopped-chicken-with-rice_140725-3389.jpg"],
},
}; };
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1411,7 +1384,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -10,7 +10,7 @@ import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
import ContactSplit from '@/components/sections/contact/ContactSplit'; import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterMedia from '@/components/sections/footer/FooterMedia'; import FooterMedia from '@/components/sections/footer/FooterMedia';
import { Crown, Utensils, Heart, Star, DollarSign, Flame, Users, Phone } from 'lucide-react'; import { Crown, Utensils, Heart, Star, DollarSign, Flame, Users, Phone, Crown as CrownBadge } from 'lucide-react';
export default function DesertSpiceLanding() { export default function DesertSpiceLanding() {
return ( return (
@@ -188,8 +188,8 @@ export default function DesertSpiceLanding() {
featuresTitle: "What's Included:", features: ["Premium charcoal-grilled meat", "Traditional spice blend", "Crispy exterior finish", "Authentic flavor profile", "Consistent tenderness"] featuresTitle: "What's Included:", features: ["Premium charcoal-grilled meat", "Traditional spice blend", "Crispy exterior finish", "Authentic flavor profile", "Consistent tenderness"]
}, },
{ {
id: "family", tag: "Family Feast", tagIcon: Users, id: "family", tag: "Family Feast", tagIcon: CrownBadge,
price: "₹1,5002,500", period: "per platter", description: "Mixed mandi, BBQ, and shawarma for 4 people with sides.", button: { text: "Order Now", href: "#contact" }, price: "₹1,5002,500", period: "per platter", description: "Mixed mandi, BBQ, and shawarma for 4 people with sides. Our best-value package.", button: { text: "Order Now", href: "#contact" },
featuresTitle: "What's Included:", features: ["Mixed mandi selection", "BBQ skewers variety", "Shawarma platter", "Rice & bread sides", "Dessert & beverages"] featuresTitle: "What's Included:", features: ["Mixed mandi selection", "BBQ skewers variety", "Shawarma platter", "Rice & bread sides", "Dessert & beverages"]
} }
]} ]}