From 5af36f9ec2b6ebda9af958dd1c8174a773e22ac1 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 23:06:00 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 52 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8178757..7f00f49 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Raleway } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "../styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Molecule Mathura - Best Rooftop Restaurant in Mathura | Fine Dining & Events", description: "Experience premium rooftop dining at Molecule Mathura. Fine dining, live music, DJ nights, and unforgettable celebrations. Open until 1 AM. Reserve your table now!", keywords: "rooftop restaurant Mathura, fine dining, live music, DJ nights, party venue, corporate events, birthday celebrations, best restaurant Mathura", metadataBase: new URL("https://molecule-mathura.com"), - alternates: { - canonical: "https://molecule-mathura.com"}, - openGraph: { - title: "Molecule Mathura - Premium Rooftop Dining Experience", description: "Join us for fine dining, live entertainment, and unforgettable rooftop celebrations in Mathura", url: "https://molecule-mathura.com", siteName: "Molecule Mathura", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/wineglass-restaurant-table_23-2147731694.jpg", alt: "Molecule Mathura Rooftop Restaurant"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Molecule Mathura - Rooftop Dining", description: "Premium fine dining and nightlife in Mathura. Reserve your rooftop experience now!", images: ["http://img.b2bpic.net/free-photo/wineglass-restaurant-table_23-2147731694.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Molecule Mathura", description: "Fine dining, live music, club parties and unforgettable nights in Mathura. Molecule Mathura – Best Rooftop Restaurant."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}