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 (
-
-