import type { Metadata } from "next"; import { Cormorant_Garamond, Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const cormorantGaramond = Cormorant_Garamond({ variable: "--font-cormorant-garamond", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "Luxury Jungle Escape & Modern Mansion Retreat", description: "Experience the epitome of luxury at our modern jungle escape and mansion retreat. World-class amenities, sophisticated design, and natural serenity combined.", keywords: "luxury mansion, jungle escape, resort, wellness, spa, premium accommodations, tropical paradise", metadataBase: new URL("https://www.luxuryjungleescape.com"), alternates: { canonical: "https://www.luxuryjungleescape.com" }, openGraph: { title: "Luxury Jungle Escape & Modern Mansion Retreat", description: "Discover ultimate luxury with natural beauty. An exclusive modern mansion nestled in lush jungle surroundings.", url: "https://www.luxuryjungleescape.com", siteName: "Luxury Jungle Escape", type: "website", images: [ { url: "asset://hero-image-1", alt: "Luxury modern mansion with jungle backdrop" } ] }, twitter: { card: "summary_large_image", title: "Luxury Jungle Escape & Modern Mansion Retreat", description: "Experience sophistication meets nature in our exclusive luxury retreat.", images: ["asset://hero-image-2"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}