Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-03 16:42:55 +00:00
2 changed files with 7 additions and 45 deletions

View File

@@ -1,57 +1,20 @@
import type { Metadata } from "next";
import { Mulish } 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";
const mulish = Mulish({
variable: "--font-mulish", 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: "Deepika Comforts - Budget Lodge Near Dharmasthala Temple | Book Now", description: "Affordable lodge opposite Kanyadi II Bus Stand, close to Dharmasthala Temple. Clean rooms, family-friendly stay. 4.6★ rating. Book direct: 080738 97239", keywords: "lodge in Dharmasthala, rooms near Dharmasthala temple, budget stay Dharmasthala, hotel near Kanyadi bus stand", metadataBase: new URL("https://deepikacomforts.com"),
alternates: {
canonical: "https://deepikacomforts.com"},
openGraph: {
title: "Deepika Comforts - Comfortable Stay Near Dharmasthala Temple", description: "Book clean, comfortable rooms at budget-friendly prices. Prime location opposite Kanyadi II Bus Stand.", url: "https://deepikacomforts.com", siteName: "Deepika Comforts", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/old-wooden-door_1339-4255.jpg", alt: "Deepika Comforts Lodge Exterior"},
],
},
twitter: {
card: "summary_large_image", title: "Deepika Comforts - Budget Lodge in Dharmasthala", description: "Clean, convenient rooms near the temple. Call 080738 97239 to book.", images: ["http://img.b2bpic.net/free-photo/old-wooden-door_1339-4255.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Deepika Comforts - Budget Lodge near Dharmasthala Temple", description: "Clean, comfortable rooms near Dharmasthala Temple. Budget-friendly lodge opposite Kanyadi II Bus Stand. Perfect for families and pilgrims."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${mulish.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -203,7 +203,7 @@ export default function LandingPage() {
ctaTitle="Planning Your Visit to Dharmasthala?"
ctaDescription="Check room availability, confirm your stay, or ask any questions. Our team responds quickly to ensure a smooth booking experience."
ctaButton={{
text: "Call Now: 080738 97239", href: "tel:08073897239"
text: "Book Your Stay Now", href: "tel:08073897239"
}}
ctaIcon={Phone}
useInvertedBackground={true}