import type { Metadata } from "next"; import { Cormorant } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const cormorant = Cormorant({ variable: "--font-cormorant", subsets: ["latin"], }); export const metadata: Metadata = { title: "Luxe Haven - Luxury 5-Star Hotel & Resort", description: "Experience timeless elegance at Luxe Haven. World-class amenities, fine dining, spa services, and exceptional hospitality for your perfect getaway.", keywords: "luxury hotel, 5-star resort, fine dining, spa, boutique hotel, hospitality", openGraph: { title: "Luxe Haven - Luxury 5-Star Hotel & Resort", description: "Discover luxury and comfort at Luxe Haven. Award-winning hotel with premium rooms, fine dining, spa, and world-class service.", siteName: "Luxe Haven", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766184710583-yt05ru42.jpg", alt: "Luxury hotel lobby" } ] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}