Files
bdec33a0-f3a2-45d2-bb59-e14…/src/app/layout.tsx
2026-03-16 15:52:04 +00:00

76 lines
2.6 KiB
TypeScript

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";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
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<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}