4 Commits

Author SHA1 Message Date
31a2d03811 Merge version_2 into main
Merge version_2 into main
2026-03-10 09:11:34 +00:00
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 { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import './globals.css';
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ['latin'] });
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: {
index: true,
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"],
},
title: 'Desert Spice - Authentic Arabian BBQ & Mandi',
description: 'Experience authentic Arabian cuisine at Desert Spice. Fine dining mandi, legendary BBQ, and generous family platters in Mahabubnagar.',
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -10,7 +10,7 @@ import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
import ContactSplit from '@/components/sections/contact/ContactSplit';
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() {
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"]
},
{
id: "family", tag: "Family Feast", tagIcon: Users,
price: "₹1,5002,500", period: "per platter", description: "Mixed mandi, BBQ, and shawarma for 4 people with sides.", button: { text: "Order Now", href: "#contact" },
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. 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"]
}
]}