import type { Metadata } from "next"; import { Inter_Tight } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const interTight = Inter_Tight({ variable: "--font-inter-tight", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { title: "Luxury Real Estate in Dubai | Premium Properties", description: "Discover exclusive luxury properties across Dubai. Premium villas, beachfront apartments, and investment opportunities with expert guidance from Luxe Properties.", keywords: "Dubai real estate, luxury properties, villas, apartments, real estate investment, Dubai homes", metadataBase: new URL("https://luxepropertiesdubai.com"), alternates: { canonical: "https://luxepropertiesdubai.com" }, openGraph: { title: "Luxury Real Estate in Dubai | Premium Properties", description: "Explore exclusive luxury properties in Dubai with expert real estate guidance.", type: "website", siteName: "Luxe Properties", images: [ { url: "https://img.b2bpic.net/free-photo/business-urban-beautiful-landscape-night_1122-1702.jpg", alt: "Dubai luxury real estate skyline" } ] }, twitter: { card: "summary_large_image", title: "Luxury Real Estate in Dubai", description: "Discover premium properties across Dubai's most sought-after locations.", images: ["https://img.b2bpic.net/free-photo/business-urban-beautiful-landscape-night_1122-1702.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}