Update src/app/layout.tsx

This commit is contained in:
2026-03-10 09:18:57 +00:00
parent 4a75d4c9c2
commit efc6d9de71

View File

@@ -1,49 +1,20 @@
import type { Metadata } from "next";
import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const dmSans = DM_Sans({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Mansionairre By The Roof - Premium Rooftop Restaurant Thane", description: "Experience luxury rooftop dining at Mansionairre in Thane West. Book your table now. Call +91 90690 45555. Stunning views, premium food, unforgettable nights.", keywords: "rooftop restaurant Thane, rooftop dining Wagle Estate, best restaurants Thane West, rooftop bar Thane, romantic dining Thane", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Mansionairre By The Roof - Thane's Ultimate Rooftop Dining", description: "Premium rooftop restaurant with stunning city views. Reserve your table today.", type: "website", siteName: "Mansionairre By The Roof", images: [
{
url: "http://img.b2bpic.net/free-photo/young-brunette-woman-is-enjoying-morning-with-cup-hot-drink-book-her-hands-rest-relaxation-concept_169016-10477.jpg", alt: "Rooftop restaurant with stunning night city views"},
],
},
twitter: {
card: "summary_large_image", title: "Mansionairre By The Roof - Premium Rooftop Dining in Thane", description: "Book your rooftop dining experience now. Stunning views, exceptional food, unforgettable service.", images: [
"http://img.b2bpic.net/free-photo/young-brunette-woman-is-enjoying-morning-with-cup-hot-drink-book-her-hands-rest-relaxation-concept_169016-10477.jpg"],
},
};
title: "Mansionairre By The Roof | Premium Rooftop Dining in Thane", description: "Experience luxury rooftop dining at Mansionairre. Stunning views, signature dishes, and exceptional service in Thane West."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={dmSans.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}