From d7a4c0768e549ab1615bd84e32fe7934a1aa7c22 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 10:11:20 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 52 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f5c8cd1..1e09102 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ 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"; +import "@/styles/globals.css"; -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"], -}); +const inter = Inter({ 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, - }, -}; + title: "Prabhaa Grand Inn - Premium Comfort Stay in Chittoor", description: "Experience comfort & elegance at Prabhaa Grand Inn, located in the heart of Chittoor. Premium rooms, free breakfast, secure parking, and exceptional hospitality."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}