From 0219a250acbceda49122e1b4297ff084a4fe0264 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 05:24:14 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 69 +++++----------------------------------------- 1 file changed, 7 insertions(+), 62 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3f3f0f2..aef4c9b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,74 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Figtree } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const figtree = Figtree({ - variable: "--font-figtree", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Luxe Dubai - Luxury Real Estate in Dubai", - description: "Discover Dubai's most iconic luxury properties through immersive cinematic experiences. Premium real estate portfolio with investment insights.", - keywords: "luxury real estate Dubai, premium properties, Burj Khalifa, Palm Jumeirah, Emirates Hills, Dubai property investment", - metadataBase: new URL("https://luxedubai.com"), - alternates: { - canonical: "https://luxedubai.com", - }, - openGraph: { - title: "Luxe Dubai - Discover Luxury Living", - description: "Explore exclusive Dubai properties through cinematic virtual tours and expert guidance.", - url: "https://luxedubai.com", - siteName: "Luxe Dubai", - images: [ - { - url: "http://img.b2bpic.net/free-photo/river-modern-buildings-against-sky_1359-154.jpg", - alt: "dubai skyline luxury sunset", - }, - ], - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Luxe Dubai - Premium Real Estate Experience", - description: "Immersive luxury property platform for discerning investors.", - images: ["http://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920931.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Luxe Dubai - Discover Iconic Luxury Properties", description: "Find luxury properties in Dubai faster and easier with our curated collection of iconic homes, cinematic tours, and expert guidance."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}