diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d09ce2..dc9c816 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}