From 0bc3d1766f3e39bd33d04d49c57a76a1f54f1129 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 11:24:52 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1412 +------------------------------------------- 1 file changed, 5 insertions(+), 1407 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b8e1e54..c026e3e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1418 +1,17 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import { Inter } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "The Bookmark Cafe | Books & Bistro in Kalyan West", description: "Escape into a story, one bite at a time. The Bookmark Cafe combines a cozy bistro with a curated library. Borrow books while you dine. Perfect for students, readers, and food lovers near KM Agrawal College.", keywords: "cafe near KM Agrawal College, bistro Kalyan West, book cafe, study cafe with WiFi, restaurant near college, cozy cafe, literary cafe", metadataBase: new URL("https://www.bookmarkcafe.com"), - alternates: { - canonical: "https://www.bookmarkcafe.com"}, - openGraph: { - title: "The Bookmark Cafe | Books Meet Bistro", description: "A unique blend of library and restaurant. Dine, read, and borrow books in Kalyan West.", url: "https://www.bookmarkcafe.com", siteName: "The Bookmark Cafe", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/person-cafe-reading-book-while-having-coffee_23-2150064781.jpg", alt: "The Bookmark Cafe - Cozy Reading Corner"}, - ], - }, - twitter: { - card: "summary_large_image", title: "The Bookmark Cafe | Escape into a Story", description: "Books, bistro, and the perfect study spot in Kalyan West.", images: ["http://img.b2bpic.net/free-photo/person-cafe-reading-book-while-having-coffee_23-2150064781.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "The Bookmark Cafe", description: "A literary bistro in Kalyan West blending books, food, and community."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -