From de617b9936a6486bf4982bf8c2fae10f9fdb53fd Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 16:11:15 +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 92d4eb0..5f05233 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: "Best Restaurant in Laxmi Nagar | Delish Kitchen - Authentic Multi-Cuisine", description: "Discover Delish Kitchen, the best family restaurant in Laxmi Nagar, East Delhi. Authentic multi-cuisine food, paneer tikka, chilli paneer, manchurian & more. Reserve your table today!", keywords: "best restaurant Laxmi Nagar, Chinese food East Delhi, vegetarian restaurant, family restaurant near me, Paneer Tikka Delhi, affordable dining", metadataBase: new URL("https://delishkitchen.com"), - alternates: { - canonical: "https://delishkitchen.com" - }, - openGraph: { - title: "Delish Kitchen - Best Restaurant in Laxmi Nagar", description: "Authentic multi-cuisine food with warm ambiance. Call now to reserve your table or place an order.", url: "https://delishkitchen.com", siteName: "Delish Kitchen", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/couple-sitting-bar-enjoying-drinks-pub_23-2147859557.jpg", alt: "Delish Kitchen Food Spread" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Delish Kitchen - Best Restaurant in Laxmi Nagar", description: "Delicious multi-cuisine food. Family-friendly ambiance. Reserve your table today!", images: ["http://img.b2bpic.net/free-photo/couple-sitting-bar-enjoying-drinks-pub_23-2147859557.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Delish Kitchen - Authentic Multi-Cuisine Restaurant", description: "Experience authentic Indian and Chinese flavors at Delish Kitchen in Laxmi Nagar. Cozy ambiance, affordable dining, and exceptional service."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -