Update src/app/layout.tsx

This commit is contained in:
2026-03-10 09:11:30 +00:00
parent 9e3e79b69b
commit 79b85e5238

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>
);
}