From 96d2ea39032eaa2d54fe2ca500ce2586ff86a2ff Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 17:00:27 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 53 ++++++++++++---------------------------------- 1 file changed, 13 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5542612..b9e00cc 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geistSans = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Hotel Malhar Regency Shirpur - Budget Hotel with AC, WiFi & Pool", description: "Affordable 1-star hotel in Shirpur with comfortable AC rooms, free WiFi, free parking, swimming pool, and excellent service. Book your stay now!", keywords: "hotel Shirpur, budget hotel Shirpur, affordable stay Shirpur, AC rooms Shirpur, hotel near bus stand, hospitality Shirpur", metadataBase: new URL("https://hotelmalharregency.com"), - alternates: { - canonical: "https://hotelmalharregency.com" - }, - openGraph: { - title: "Hotel Malhar Regency - Comfortable & Affordable Stay in Shirpur", description: "Experience comfort at affordable prices. Clean rooms, free WiFi, free parking, swimming pool. Book your room today!", url: "https://hotelmalharregency.com", siteName: "Hotel Malhar Regency", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/building-night_1127-3365.jpg", alt: "Hotel Malhar Regency Exterior" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Hotel Malhar Regency Shirpur - Budget Hotel", description: "Affordable rooms with AC, WiFi, pool, free parking in Shirpur. Call +91 98222 72219", images: ["http://img.b2bpic.net/free-photo/building-night_1127-3365.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Hotel Malhar Regency - Affordable Comfortable Stay in Shirpur", description: "Book your stay at Hotel Malhar Regency in Shirpur. Clean rooms, free WiFi, AC, swimming pool, and free parking. Best budget hotel in Shirpur."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +