From fb53341b37925d0ff1ac794ff9f11364c9be66ab Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 13:39:44 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1416 +------------------------------------------- 1 file changed, 10 insertions(+), 1406 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ce4de8a..e0e0bfc 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1417 +1,22 @@ -import type { Metadata } from "next"; -import { Libre_Baskerville } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Inter } from 'next/font/google'; +import './globals.css'; -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ['latin'] }); export const metadata: Metadata = { - title: "Stepout Cafe - Jaipur's Cozy Vegetarian Coffee House", description: "Experience Jaipur's favorite cafe serving legendary Bombay sandwiches, cafe-style cold coffee & crepes in a vibrant artistic space. Join 3000+ happy visitors.", keywords: "cafe jaipur, cold coffee, bombay sandwich, vegetarian restaurant, cozy workspace, creative hangout, jaipur cafe", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Stepout Cafe - Step Out of Stress. Step Into Flavor.", description: "Jaipur's vibrant vegetarian cafe with legendary cold coffee, Bombay sandwiches & cozy artistic atmosphere perfect for work and hangouts.", type: "website", siteName: "Stepout Cafe", images: [ - { - url: "http://img.b2bpic.net/free-photo/closeup-shot-cafe-wooden-table-with-jar-decorative-flowers-against-blurred-background_181624-59999.jpg", alt: "bright yellow cafe interior cozy aesthetic"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Stepout Cafe - Jaipur's Favorite Creative Hangout", description: "Legendary cold coffee, Bombay sandwiches & vegetarian comfort food in a cozy artistic space loved by 3000+ customers.", images: [ - "http://img.b2bpic.net/free-photo/closeup-shot-cafe-wooden-table-with-jar-decorative-flowers-against-blurred-background_181624-59999.jpg"], - }, + title: 'Stepout Cafe', + description: 'Jaipur\'s favorite vegetarian café', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -