Update src/app/layout.tsx

This commit is contained in:
2026-03-16 15:52:04 +00:00
parent 0437545ed6
commit 4723db28d4

View File

@@ -1,24 +1,56 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Figtree } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Kerala Fusion Restaurant - Authentic Kerala Indian Cuisine in Riyadh",
description: "Experience authentic Kerala Indian cuisine with modern fusion flavors in Riyadh. 4.5-star rated restaurant offering affordable prices, cozy ambiance, and exceptional food. Dine-in, delivery, and catering available.",
keywords: "Kerala restaurant Riyadh, Indian cuisine Saudi Arabia, biryani, appam, seafood curry, Kerala food, fusion restaurant, authentic Indian, fine dining Riyadh",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Kerala Fusion Restaurant - Authentic Kerala Flavors in Riyadh",
description: "4.5-star rated Kerala Indian restaurant serving authentic cuisine with modern fusion. Cozy dining, affordable prices, and exceptional service in Riyadh.",
siteName: "Kerala Fusion Restaurant",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/high-angle-delicious-pakistan-dish-composition_23-2148821522.jpg",
alt: "Kerala Fusion Restaurant - Authentic Biryani",
},
],
},
twitter: {
card: "summary_large_image",
title: "Kerala Fusion Restaurant - Riyadh",
description: "Authentic Kerala Indian cuisine with fusion flavors. 4.5-star rated. Dine-in, delivery, catering.",
images: ["http://img.b2bpic.net/free-photo/high-angle-delicious-pakistan-dish-composition_23-2148821522.jpg"],
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +59,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${figtree.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +73,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}