From 61089cd6b5124ff1b8e2c76cfefb26a11b029b42 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 17:28:42 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 +++++++++------------------------------------- 1 file changed, 9 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d166803..d6d2664 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,23 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Figtree } from "next/font/google"; +import { Poppins } from "next/font/google"; 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 figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], +const poppins = Poppins({ + subsets: ["latin"], + weight: ["400", "500", "600", "700"], }); export const metadata: Metadata = { - title: "Gossip Cafe & Restaurant | Premium Dining & Social Gathering", description: "Experience premium dining at Gossip Cafe. Sophisticated ambiance, culinary excellence, and vibrant social gatherings. Open 11:30 PM. 4.9★ rated. Reserve your table today.", keywords: "cafe restaurant, premium dining, social gathering, culinary experience, cocktails, fine dining India", openGraph: { - title: "Gossip Cafe & Restaurant - Where Culinary Art Meets Vibrant Social Gatherings", description: "Discover premium dining with sophisticated ambiance at Gossip Cafe & Restaurant. 4.9★ rated. Reserve now.", siteName: "Gossip Cafe & Restaurant", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-small-vase-with-dried-plants_23-2148238664.jpg", alt: "Gossip Cafe Interior"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Gossip Cafe & Restaurant | Premium Dining Destination", description: "Experience culinary excellence and vibrant social ambiance at Gossip Cafe.", images: ["http://img.b2bpic.net/free-photo/happy-friends-posing-through-window_23-2148422477.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Gossip Cafe & Restaurant", description: "Premium dining and social gathering destination"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}