import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "Luxe Hotel - Luxury Accommodations & World-Class Service", description: "Experience premium hospitality at Luxe Hotel. Luxury rooms, fine dining, spa, and exceptional service in the heart of the city. Book your stay today.", keywords: "luxury hotel, accommodation, fine dining, spa, world-class service, premium rooms", metadataBase: new URL("https://luxehotel.com"), alternates: { canonical: "https://luxehotel.com" }, openGraph: { title: "Luxe Hotel - Your Gateway to Luxury", description: "Discover exceptional hospitality and world-class amenities at Luxe Hotel", siteName: "Luxe Hotel", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766184712312-lhl1h85w.jpg", alt: "Luxe Hotel - Luxury Accommodations" } ] }, twitter: { card: "summary_large_image", title: "Luxe Hotel - Premium Stays & Hospitality", description: "Book luxury rooms and experience world-class service at Luxe Hotel", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766184712312-lhl1h85w.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}