From 0cf50e26d701f982914b496f22c9b74f489c4134 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 17:43:40 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1420 +------------------------------------------- 1 file changed, 8 insertions(+), 1412 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 074bdaf..7f50a53 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito } from "next/font/google"; +import { GeistSans } from "geist/font/sans"; +import { GeistMono } from "geist/font/mono"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "The Cherry Tree Cafe - Coffee & Food in Hazratganj, Lucknow", description: "Premium café in Hazratganj offering coffee, pasta, pizzas & desserts. Dine-in, delivery & table reservations. 4.4★ rated. Open 8am-11pm daily.", keywords: "café in Hazratganj, best café Lucknow, coffee shop, pizza, pasta, desserts, table reservation, Lucknow café", metadataBase: new URL("https://www.thecherrytreecafe.com"), - alternates: { - canonical: "https://www.thecherrytreecafe.com"}, - openGraph: { - title: "The Cherry Tree Cafe - Lucknow's Favorite Café", description: "Premium café in Hazratganj serving fresh coffee, delicious food & unforgettable moments. Reserve your table today!", url: "https://www.thecherrytreecafe.com", siteName: "The Cherry Tree Cafe", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/virtual-love-cute-blonde-girl-red-dress-distance-date-with-wine-candles-pointing-gift_140725-163892.jpg", alt: "The Cherry Tree Cafe Interior"}, - ], - }, - twitter: { - card: "summary_large_image", title: "The Cherry Tree Cafe - Coffee & Food in Hazratganj", description: "Premium café experience in the heart of Hazratganj. 4.4★ rated by 8000+ customers.", images: ["http://img.b2bpic.net/free-photo/virtual-love-cute-blonde-girl-red-dress-distance-date-with-wine-candles-pointing-gift_140725-163892.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "The Cherry Tree Cafe - Lucknow's Favorite Café", description: "Serving fresh coffee, delicious pasta, pizzas and desserts in the heart of Hazratganj. Join us for an unforgettable café experience."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -