diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1bfe997..a4e21b9 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 { Archivo } 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 { Archivo } 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 archivo = Archivo({ variable: "--font-archivo", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Thenmanam - Premium South Indian Non-Veg Restaurant | Anna Nagar, Chennai", + description: "Experience authentic Tamil non-veg cuisine at Thenmanam. Famous for Seeraga Samba biryani, live starter display, and exceptional service. Located in Anna Nagar, Chennai. No reservations—first come, first served.", + keywords: "south indian restaurant, non veg restaurant Chennai, Michelin style dining, biryani, Anna Nagar restaurants, Tamil cuisine, premium dining", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Thenmanam - Premium South Indian Dining Experience", + description: "Authentic Tamil non-veg cuisine with modern luxury. Most talked-about restaurant in Anna Nagar, Chennai.", + siteName: "Thenmanam Restaurant", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/tomato-soup-with-spicy-ingredient-top_114579-2430.jpg", + alt: "Thenmanam Premium Dining", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Thenmanam - Premium South Indian Restaurant", + description: "Experience authentic Tamil non-veg cuisine. Rated 5★ by 1000+ food lovers.", + images: ["http://img.b2bpic.net/free-photo/tomato-soup-with-spicy-ingredient-top_114579-2430.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +59,9 @@ export default function RootLayout({ return ( - + {children}