diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 81adaf9..0350029 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}