Update src/app/layout.tsx

This commit is contained in:
2026-03-07 01:34:44 +00:00
parent 77f28727f3
commit d80e5dd37c

View File

@@ -1,59 +1,21 @@
import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "./styles/variables.css";
import "./styles/base.css";
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Molecule Mathura - Premium Rooftop Restaurant & Nightlife", description: "Experience rooftop dining like never before at Molecule Mathura in Mathura. Fine dining, live music, DJ parties, and unforgettable nights. Open until 1 AM. Reserve your table today!", keywords: "rooftop restaurant Mathura, fine dining Mathura, nightlife Mathura, DJ parties, live music venue, premium cafe, event venue Mathura", openGraph: {
title: "Molecule Mathura - Premium Rooftop Restaurant", description: "Experience premium rooftop dining, live entertainment, and exclusive nightlife at Molecule Mathura. Reservation available.", url: "https://moleculemathura.com", siteName: "Molecule Mathura", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/nightlife-people-having-fun-bars-clubs_23-2149088559.jpg", alt: "Molecule Mathura rooftop night view"},
],
},
twitter: {
card: "summary_large_image", title: "Molecule Mathura - Premium Rooftop Dining", description: "Experience rooftop dining like never before. Fine dining, live music, DJ parties.", images: ["http://img.b2bpic.net/free-photo/nightlife-people-having-fun-bars-clubs_23-2149088559.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Molecule Mathura | Premium Rooftop Restaurant & Nightlife", description: "Experience Mathura's ultimate rooftop dining destination with fine cuisine, live music, DJ parties, and breathtaking skyline views."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${manrope.variable} ${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1383,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}