Files
2cd298d8-cace-4123-9141-bd8…/src/app/layout.tsx
2026-05-26 15:33:47 +00:00

74 lines
2.5 KiB
TypeScript

import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Public_Sans } from "next/font/google";
export const metadata: Metadata = {
title: 'Hotel Sri Sierra - Luxury Accommodation & World-Class Service',
description: 'Discover unparalleled comfort and luxury at Hotel Sri Sierra. Offering exquisite rooms, premium amenities, and exceptional service in a prime location for an unforgettable stay.',
keywords: ["South Indian restaurant, Ariyalur, Banana Leaf, AC restaurant, Tamil Nadu, Indian food, biriyani, dosa, rasam, vegetarian meals, non-vegetarian"],
openGraph: {
"title": "Banana Leaf A/c Restaurant - Authentic South Indian Cuisine",
"description": "Experience the best of South Indian flavors at Banana Leaf A/c Restaurant in Ariyalur. Dine-in, drive-through, or enjoy no-contact delivery of our delicious, high-quality meals.",
"url": "https://bananaleafacrestaurant.shop",
"siteName": "Banana Leaf A/c Restaurant",
"images": [
{
"url": "http://img.b2bpic.net/free-photo/banana-leaf_1339-1200.jpg",
"alt": "Authentic South Indian Thali"
}
],
"type": "website"
},
twitter: {
"card": "summary_large_image",
"title": "Banana Leaf A/c Restaurant - Authentic South Indian Cuisine",
"description": "Experience the best of South Indian flavors at Banana Leaf A/c Restaurant in Ariyalur. Dine-in, drive-through, or enjoy no-contact delivery of our delicious, high-quality meals.",
"images": [
"http://img.b2bpic.net/free-photo/banana-leaf_1339-1200.jpg"
]
},
robots: {
"index": true,
"follow": true
},
};
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}