Update src/app/layout.tsx

This commit is contained in:
2026-03-07 15:46:58 +00:00
parent c57532d407
commit 377d312e52

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}