From 2599e5eb03319ff785b842b84da496232d3cdfdb Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 10:12:24 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 57 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 82b392d..52f3840 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Roboto } 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 { Roboto } 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 roboto = Roboto({ variable: "--font-roboto", @@ -20,6 +24,41 @@ const roboto = Roboto({ weight: ["100", "300", "400", "500", "700", "900"], }); +export const metadata: Metadata = { + title: "Sheetal Chhaya Dhaba - 24/7 Indian Restaurant on NH-43 Near Sini", + description: "Authentic Indian restaurant serving fresh food 24/7 on NH-43. Perfect stop for travelers with fast service, family-friendly seating, and traditional dhaba cuisine.", + keywords: "Indian restaurant, dhaba, NH-43, Sini, 24/7 restaurant, Indian food, highway restaurant, authentic cuisine", + metadataBase: new URL("https://sheetalchhayadhaba.com"), + alternates: { + canonical: "https://sheetalchhayadhaba.com", + }, + openGraph: { + title: "Sheetal Chhaya Dhaba - 24/7 Indian Restaurant on NH-43", + description: "Experience authentic Indian food served fresh 24/7. Perfect stop for travelers and families on Highway 43.", + siteName: "Sheetal Chhaya Dhaba", + type: "website", + url: "https://sheetalchhayadhaba.com", + images: [ + { + url: "http://img.b2bpic.net/free-photo/portrait-indian-man-bazaar_23-2150913306.jpg", + alt: "Sheetal Chhaya Dhaba Restaurant", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Sheetal Chhaya Dhaba - 24/7 Indian Restaurant", + description: "Authentic Indian food served fresh 24/7 on NH-43", + images: [ + "http://img.b2bpic.net/free-photo/portrait-indian-man-bazaar_23-2150913306.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +67,9 @@ export default function RootLayout({ return ( - + {children}