From 5b0c6f1474d9115c064f189d8410ca32039911e4 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 07:46:05 +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 9f9bec3..9bf8238 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 { Archivo } 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 archivo = Archivo({ - variable: "--font-archivo", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Prestige Homes - Luxury Real Estate & Exclusive Properties", - description: "Discover luxury real estate listings and premium properties with Prestige Homes. Expert agents specializing in high-end residential sales and investment properties.", - keywords: "luxury real estate, premium properties, high-end homes, real estate agent, luxury listings, investment property", - metadataBase: new URL("https://prestigehomes.com"), - alternates: { - canonical: "https://prestigehomes.com", - }, - openGraph: { - title: "Prestige Homes - Luxury Real Estate", - description: "Explore exclusive luxury properties with expert real estate services", - url: "https://prestigehomes.com", - siteName: "Prestige Homes", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg", - alt: "Luxury property showcase", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Prestige Homes - Luxury Real Estate", - description: "Discover your dream luxury home with our expert agents", - images: ["http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Prestige Homes - Luxury Real Estate", description: "Discover luxury real estate excellence with Prestige Homes. Expert agents, exclusive properties, and premium service."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}