From a3f0605ad927d5b65da34b2413cc29b088b785c4 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 11:20:31 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 56 +++++++++------------------------------------- 1 file changed, 10 insertions(+), 46 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5636bdd..9bf56d6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,24 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito } 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 halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Moto Space Restaurant & Party Hall | Family Dining & Events in Madurai", description: "Discover Moto Space Restaurant & Party Hall in Madurai - rated 4.2★ by 825 customers. Enjoy family dining, catering, and event hosting with beautiful ambience and authentic cuisine.", keywords: "restaurant Madurai, party hall Madurai, AC party hall, family dining, event venue, birthday party venue, catering Madurai, late night restaurant", metadataBase: new URL("https://motospace.example.com"), - alternates: { - canonical: "https://motospace.example.com" - }, - openGraph: { - title: "Moto Space Restaurant & Party Hall | Madurai", description: "Premium family dining and event hosting venue in Madurai with 4.2★ rating from 825 reviews", url: "https://motospace.example.com", siteName: "Moto Space Restaurant & Party Hall", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/full-shot-people-celebrating-together_23-2149213377.jpg", alt: "Moto Space restaurant outdoor dining ambience" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Moto Space Restaurant & Party Hall | Madurai", description: "Family-friendly restaurant with party hall, exceptional food, and beautiful ambience. Open 24 hours.", images: ["http://img.b2bpic.net/free-photo/full-shot-people-celebrating-together_23-2149213377.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Moto Space - Restaurant & Party Hall in Madurai", description: "Moto Space: Family dining, events, and celebrations under the flyover in Madurai. Best party hall, affordable food, and exceptional service."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +