From 427f676e16d3ff842f200b36a76c0b36cf567383 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 06:19:44 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1415 +------------------------------------------- 1 file changed, 7 insertions(+), 1408 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 93fd82d..0f99042 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1420 +1,20 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Cine Tree Cafe - Best Coffee Shop Near Connaught Place Delhi", description: "Late-night coffee café near Connaught Place with premium beverages, Italian pasta, Indian cuisine, and cozy covered open-air seating. Open 11 AM - 5 AM. 700+ Reviews.", keywords: "coffee shop near Connaught Place, late night café Delhi, Sansad Marg café, Constitution Club, specialty coffee Delhi", metadataBase: new URL("https://cinetreecafe.com"), - alternates: { - canonical: "https://cinetreecafe.com" - }, - openGraph: { - title: "Cine Tree Cafe - Best Coffee Shop Near Connaught Place", description: "Experience premium coffee, great food, and cozy ambience. Open 11 AM - 5 AM. Located near Connaught Place.", url: "https://cinetreecafe.com", siteName: "Cine Tree Cafe", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/elegant-brunette-south-asian-indian-girl-saree-posed-indoor-cafe-drinking-tea_627829-1998.jpg", alt: "Cine Tree Cafe cozy covered seating area" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Cine Tree Cafe - Best Coffee Shop Near Connaught Place", description: "Late-night café with premium coffee, great food & cozy vibes. Open 11 AM - 5 AM", images: ["http://img.b2bpic.net/free-photo/elegant-brunette-south-asian-indian-girl-saree-posed-indoor-cafe-drinking-tea_627829-1998.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Cine Tree Cafe", description: "Best coffee shop near Connaught Place. Open 11 AM - 5 AM with cozy seating and premium beverages."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -