Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9f838a5f53 | |||
| a8732f4003 | |||
| d497bf8b3f | |||
| c24f58aca9 | |||
| d2fe2f9bda | |||
| 926fca6bf8 | |||
| bf19c427bf |
@@ -1,57 +1,21 @@
|
||||
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 +1383,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -87,7 +87,8 @@ export default function LandingPage() {
|
||||
title: "Responsive Staff", description: "Our friendly team is available 24/7 to assist with travel plans, restaurant recommendations, and temple directions.", icon: Users,
|
||||
},
|
||||
{
|
||||
title: "Easy Access to Essentials", description: "Close to food stalls, transportation, and all amenities you'll need during your visit."},
|
||||
title: "Easy Access to Essentials", description: "Close to food stalls, transportation, and all amenities you'll need during your visit."
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/luxury-bedroom-interior-with-rich-furniture-scenic-view-from-walkout-deck_1258-111480.jpg?_wi=2"
|
||||
imageAlt="Deepika Comforts comfortable room"
|
||||
@@ -203,7 +204,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}
|
||||
|
||||
Reference in New Issue
Block a user