From e95fc3cb5f1195df473a1e8f41374312f85be3cb Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 01:08:14 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dcc76bf..3fc03d6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Luxury Off-Plan Properties Dubai | Middleton Real Estate", description: "Discover premium off-plan and ready-to-move residential properties across Dubai. Expert real estate solutions with transparent pricing and complete buyer support.", keywords: "off-plan properties dubai, luxury apartments dubai, real estate dubai, buy property dubai, ready to move dubai", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Luxury Off-Plan Properties Dubai | Middleton Real Estate", description: "Discover premium off-plan and ready-to-move residential properties across Dubai.", siteName: "Middleton Real Estate", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/glass-skyscraper-against-blue-sky-view-from-bottom_93675-134753.jpg", alt: "Luxury Dubai apartments and properties"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Luxury Off-Plan Properties Dubai | Middleton Real Estate", description: "Premium residential properties with transparent pricing and expert support.", images: ["http://img.b2bpic.net/free-photo/glass-skyscraper-against-blue-sky-view-from-bottom_93675-134753.jpg"], - }, -}; + title: "Middleton Real Estate", description: "Luxury off-plan properties in Dubai"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +