import type { Metadata } from "next"; import { Spectral } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const spectral = Spectral({ variable: "--font-spectral", subsets: ["latin"], weight: ["200", "300", "400", "500", "600", "700", "800"], }); export const metadata: Metadata = { title: "Luxe Hotels | Luxury Accommodations & 5-Star Service", description: "Experience world-class hospitality at Luxe Hotels. Premium rooms, exceptional service, and unforgettable stays in the heart of the city.", keywords: "luxury hotel, accommodations, 5-star hotel, premium rooms, hospitality", metadataBase: new URL("https://luxehotels.com"), alternates: { canonical: "https://luxehotels.com" }, openGraph: { title: "Luxe Hotels | Luxury Accommodations", description: "Book your stay at our 5-star hotel featuring premium rooms and exceptional service", type: "website", siteName: "Luxe Hotels", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766184710583-yt05ru42.jpg", alt: "Luxury hotel lobby" } ] }, twitter: { card: "summary_large_image", title: "Luxe Hotels | Luxury Accommodations", description: "Experience premium hospitality and unforgettable stays", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766184710583-yt05ru42.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}