import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import { getVisualEditScript } from "@/utils/visual-edit-script"; const halant = Halant({ variable: "--font-halant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: 'Elite Estates | Curated Luxury Real Estate & Private Residences', description: 'Discover an exclusive collection of luxury properties and private estates. Elite Estates offers bespoke real estate services for the world\'s most discerning buyers.', openGraph: { title: 'Elite Estates | Curated Luxury Real Estate', description: 'Discover an exclusive collection of luxury properties and private estates.' } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}