From 1b8205e31d1a07d286c3dd0113211be37efd99c4 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 13:46:59 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 54 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 46 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 282ff27..08761bf 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Nunito_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Nunito_Sans } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const nunitoSans = Nunito_Sans({ variable: "--font-nunito-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Shiva Tourist Dhaba - Authentic North Indian Restaurant in Murthal", + description: "Experience authentic North Indian cuisine at Shiva Tourist Dhaba in Murthal, Haryana. Fresh parathas, butter chicken, lassi, and traditional dhaba favorites since 1995.", + keywords: "dhaba, restaurant, murthal, haryana, north indian food, parathas, butter chicken, authentic cuisine", + metadataBase: new URL("https://shivadhabamurthal.com"), + alternates: { + canonical: "https://shivadhabamurthal.com", + }, + openGraph: { + title: "Shiva Tourist Dhaba - Authentic Taste of Murthal", + description: "Join us for authentic North Indian dining experience. Fresh ingredients, traditional recipes, and warm hospitality.", + siteName: "Shiva Tourist Dhaba", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/set-qutabs-with-various-filling_140725-2889.jpg", + alt: "Shiva Tourist Dhaba - Authentic Parathas", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Shiva Tourist Dhaba - Authentic North Indian Restaurant", + description: "Experience the warmth and authentic flavors of traditional North Indian cuisine in Murthal.", + images: ["http://img.b2bpic.net/free-photo/chicken-red-curry-bowl-with-dried-chilies-basil-cucumber-long-beans_1150-27059.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +63,9 @@ export default function RootLayout({ return ( - + {children}