Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d0e4f4e3b1 | |||
| 7166bc22d1 | |||
| 96d2ea3903 | |||
| b422221cb4 | |||
| 8af9b4d1a6 | |||
| 92f4622196 |
@@ -1,54 +1,28 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const geistSans = Geist({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
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."};
|
||||||
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
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1416,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -263,8 +263,7 @@ export default function LandingPage() {
|
|||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
inputPlaceholder="Enter your email"
|
buttonText="Call Now: +91 98222 72219"
|
||||||
buttonText="Get Booking Info"
|
|
||||||
termsText="We respect your privacy. Our team will contact you within 24 hours with booking details and special offers."
|
termsText="We respect your privacy. Our team will contact you within 24 hours with booking details and special offers."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -303,4 +302,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user