diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 52b3186..31c9255 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,74 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Public_Sans } 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 publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Royal Residency | Luxury Hotel & Banquet Hall in Gorakhpur", - description: "Premium 4-star hotel in Gorakhpur with 2400+ reviews. Luxury rooms, multi-cuisine restaurant, and elegant banquet hall for weddings and events. Book now!", - keywords: "hotel in Gorakhpur, luxury hotel, banquet hall, wedding venue, best hotel near railway station, restaurant Gorakhpur", - metadataBase: new URL("https://royalresidency.com"), - alternates: { - canonical: "https://royalresidency.com", - }, - openGraph: { - title: "Royal Residency | Luxury Hotel & Banquet Hall", - description: "Experience luxury comfort and world-class hospitality at Royal Residency in Gorakhpur. Premier rooms, fine dining, and banquet facilities.", - url: "https://royalresidency.com", - siteName: "Royal Residency", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/abu-dhabi-uae-march-16-emirates-palace-hotel-march-16-2012-emirates-palace-is-luxurious-most-expensive-7-star-hotel-designed-by-renowned-architect-john-elliott-riba_158595-1971.jpg", - alt: "Royal Residency Luxury Hotel", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Royal Residency | Luxury Hotel Gorakhpur", - description: "4.0⭐ rated luxury hotel with premium rooms, restaurant, and banquet facilities. 2400+ satisfied guests. Book your stay today!", - images: ["http://img.b2bpic.net/free-photo/abu-dhabi-uae-march-16-emirates-palace-hotel-march-16-2012-emirates-palace-is-luxurious-most-expensive-7-star-hotel-designed-by-renowned-architect-john-elliott-riba_158595-1971.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Royal Residency | Luxury Hotel in Gorakhpur", description: "Experience premium hospitality at Royal Residency, a luxury hotel in Gorakhpur with spacious rooms, multi-cuisine restaurant, and elegant banquet facilities."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}