From eaa43bef074d7ab99c8bc1321123a8b865a46856 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 15:23:04 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1417 +------------------------------------------- 1 file changed, 6 insertions(+), 1411 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 422e09d..3b2d722 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } 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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "7Stories Rooftop Restaurant in Kankarbagh, Patna | Premium Dining", description: "Discover 7Stories, Patna's premium rooftop restaurant in Kankarbagh. Enjoy authentic tandoori cuisine, warm hospitality, and unforgettable dining experiences. Reserve your table today.", keywords: "restaurant Kankarbagh, best restaurant Patna, rooftop restaurant Patna, family restaurant, tandoori food, fine dining Patna, premium restaurant, Kankarbagh dining", metadataBase: new URL("https://7stories.local"), - alternates: { - canonical: "https://7stories.local"}, - openGraph: { - title: "7Stories Rooftop Restaurant | Premium Dining in Patna", description: "Experience fine dining at 7Stories rooftop restaurant in Kankarbagh. Authentic tandoori specialties and warm hospitality.", url: "https://7stories.local", siteName: "7Stories", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/terrace-night-with-bokeh-lights_23-2148232015.jpg", alt: "elegant rooftop dining atmosphere evening"}, - ], - }, - twitter: { - card: "summary_large_image", title: "7Stories Rooftop Restaurant | Premium Dining", description: "Fine dining at its best. Authentic tandoori cuisine in Kankarbagh, Patna.", images: ["http://img.b2bpic.net/free-photo/terrace-night-with-bokeh-lights_23-2148232015.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "7Stories - Patna's Premium Rooftop Dining", description: "Experience Patna's finest rooftop dining at 7Stories in Kankarbagh. Authentic tandoori cuisine, warm hospitality, and unforgettable evenings."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -