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