diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ba480be..46560e8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}