From 98818481cf28e8cffea3dd6b74931debd28f5992 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 17:43:57 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1415 +------------------------------------------- 1 file changed, 11 insertions(+), 1404 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fca3a75..30ce688 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1419 +1,27 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Royal Restaurant Baghmara | Spicy Authentic Food", description: "Authentic spicy homemade meals trusted by 55+ customers in Baghmara. Open 6 AM–midnight daily. Book now or order via WhatsApp. ₹200–₹400 per person.", keywords: "restaurant in Baghmara, spicy food, family dining, authentic Indian food, affordable restaurant, local restaurant Baghmara", metadataBase: new URL("https://royalrestaurant.local"), - alternates: { - canonical: "https://royalrestaurant.local" - }, - openGraph: { - title: "Royal Restaurant Baghmara | Authentic Spicy Food", description: "Trusted by 55+ families for authentic, affordable meals. Open daily 6 AM–midnight. Call to book your table.", url: "https://royalrestaurant.local", siteName: "Royal Restaurant", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/high-angle-senior-with-delicious-food_23-2150854217.jpg", alt: "Authentic spicy Indian curry" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Royal Restaurant Baghmara", description: "Authentic spicy food trusted locally. Book now!", images: ["http://img.b2bpic.net/free-photo/high-angle-senior-with-delicious-food_23-2150854217.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Royal Restaurant | Authentic Spicy Food in Baghmara", description: "Royal Restaurant offers authentic, spicy homemade meals in Harina Basti, Baghmara. Open 6 AM–midnight daily. Call +91-XXXXX-XXXXX to book your table."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -