From 977552b2fa71f0cd22fdb53352955e578840a2ac Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 09:56:32 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1438 -------------------------------------------- 1 file changed, 1438 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ad2343f..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1438 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Raleway } 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 raleway = Raleway({ - variable: "--font-raleway", - subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Eats Corner Restaurant - Authentic Indo-Chinese Food in Gachibowli, Hyderabad", - description: "Authentic Indo-Chinese restaurant in Gachibowli serving fresh momos, fried rice, noodles & thukpa. Affordable prices, dine-in, takeaway & delivery. Order online now!", - keywords: "Indo-Chinese restaurant Gachibowli, Chinese food Hyderabad, momos, fried rice, noodles, Thukpa, affordable Chinese food", - metadataBase: new URL("https://eats-corner.local"), - openGraph: { - title: "Eats Corner Restaurant - Authentic Indo-Chinese Flavours", - description: "Fresh, affordable, and delicious Chinese food for dine-in, takeaway, and delivery in Gachibowli, Hyderabad", - siteName: "Eats Corner Restaurant", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-bowl-vegetables-noodles_23-2148382863.jpg", - alt: "Delicious Chinese food at Eats Corner", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Eats Corner Restaurant - Authentic Indo-Chinese Food", - description: "Experience authentic Indo-Chinese flavours in Gachibowli. Fresh, affordable, delicious!", - images: ["http://img.b2bpic.net/free-photo/close-up-bowl-vegetables-noodles_23-2148382863.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -