From d37f82782bf0f6d557a3af368055ed36876f105b Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 17:44:50 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 58 ++++++++++++---------------------------------- 1 file changed, 15 insertions(+), 43 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a2a7c90..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,28 @@ import type { Metadata } from "next"; -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 montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Prestige Realty - Luxury Real Estate & High-End Properties", - description: "Discover exquisite luxury properties with Prestige Realty. Expert agents specializing in high-end real estate, exclusive listings, and premium residential properties.", - keywords: "luxury real estate, high-end properties, luxury homes, exclusive listings, luxury apartments, premium residential", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Prestige Realty - Luxury Real Estate", - description: "Explore our curated collection of luxury properties and find your dream home today.", - url: "https://prestigerealty.com", - siteName: "Prestige Realty", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/modern-living-room-with-large-windows-comfortable-furniture_9975-33081.jpg", - alt: "Luxury property showcase", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Prestige Realty - Luxury Real Estate", - description: "Discover exquisite luxury properties with Prestige Realty.", - images: ["http://img.b2bpic.net/free-photo/modern-living-room-with-large-windows-comfortable-furniture_9975-33081.jpg"], - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +