From 377d312e527c6284b24ac0f9054e55b0b31dfd2c Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 15:46:58 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 54 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 93c79a4..99d66b8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,28 @@ 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 { Geist, Geist_Mono } 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 geistSans = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); 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: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +