From 14e98379f051cedbc52168af3c396abd701b7d96 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 15:47:01 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 54 ++++++---------------------------------------- 1 file changed, 7 insertions(+), 47 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 93c79a4..def5713 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,18 @@ -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"], -}); +import type { Metadata } from 'next'; export const metadata: Metadata = { - title: "GUJARATI RASOI - Authentic Vegetarian Restaurant in Muscat", description: "Experience authentic Gujarati, Punjabi & Jain cuisine at GUJARATI RASOI in Muscat. Pure vegetarian, family-friendly, open daily till 11 PM. Call 7980 2301 to reserve.", keywords: "Gujarati restaurant Muscat, vegetarian restaurant Muscat, Jain food Muscat, authentic Indian cuisine, pure vegetarian dishes", metadataBase: new URL("https://gujarati-rasoi.com"), - alternates: { - canonical: "https://gujarati-rasoi.com"}, - openGraph: { - title: "GUJARATI RASOI - Authentic Gujarati Vegetarian Restaurant", description: "Pure vegetarian & Jain authentic cuisine in Muscat. Fresh, flavorful, family-friendly. Reserve your table today!", url: "https://gujarati-rasoi.com", siteName: "GUJARATI RASOI", type: "website", images: [ - { - url: "https://gujarati-rasoi.com/og-image.jpg", alt: "Authentic Gujarati Thali"}, - ], - }, - twitter: { - card: "summary_large_image", title: "GUJARATI RASOI - Authentic Vegetarian Restaurant", description: "Experience pure vegetarian & Jain authentic Gujarati cuisine in Muscat.", images: ["https://gujarati-rasoi.com/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, + title: 'GUJARATI RASOI - Authentic Vegetarian & Jain Cuisine in Muscat', + description: 'Experience pure vegetarian and Jain authentic Gujarati, Punjabi & specialty dishes in Muscat. Fresh, flavorful, and lovingly prepared for your family.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}