import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Source_Sans_3 } 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 inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); const sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"], }); export const metadata: Metadata = { title: "Prabhaa Grand Inn | Luxury Hotel in Chittoor", description: "Experience premium comfort at Prabhaa Grand Inn in Chittoor. Ideal for families, business travelers, and temple visitors. Free WiFi, parking, breakfast included.", keywords: "Chittoor hotels, luxury hotel Chittoor, hotel near Kanipakam temple, best hotel Chittoor, accommodation Chittoor", metadataBase: new URL("https://prabhaagrandinn.com"), alternates: { canonical: "https://prabhaagrandinn.com"}, openGraph: { title: "Prabhaa Grand Inn | Premium Comfort Stay in Chittoor", description: "Discover luxury comfort and warm hospitality at Prabhaa Grand Inn. Book your stay today and experience the best of Chittoor.", url: "https://prabhaagrandinn.com", siteName: "Prabhaa Grand Inn", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/luxury-bedroom-interior-with-rich-furniture-scenic-view-from-walkout-deck_1258-111483.jpg", alt: "Prabhaa Grand Inn - Luxury Hotel Room"}, ], }, twitter: { card: "summary_large_image", title: "Prabhaa Grand Inn | Premium Comfort Stay", description: "Experience luxury and comfort at Prabhaa Grand Inn in Chittoor.", images: ["http://img.b2bpic.net/free-photo/city-background-panoramic-view_23-2148892901.jpg"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}