Update src/app/layout.tsx

This commit is contained in:
2026-03-05 17:00:27 +00:00
parent b422221cb4
commit 96d2ea3903

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}