From 1eb2b1b34a135eca32789ebb407db37433022ed8 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 19:36:19 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 42 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a088e29..0906d90 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,56 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Source_Sans_3 } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Source_Sans_3 } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Prestige Realty | Luxury Real Estate & Property Sales", + description: "Discover premium properties and expert real estate services with Prestige Realty. 20+ years of excellence in luxury home sales and investment opportunities.", + keywords: "real estate, luxury homes, property sales, real estate agent, investment properties, houses for sale", + openGraph: { + title: "Prestige Realty | Your Luxury Real Estate Partner", + description: "Expert real estate services and premium property listings. Find your dream home or investment property with Prestige Realty.", + siteName: "Prestige Realty", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/looking-up-through-history-elegant-staircase-old-building_169016-69867.jpg", + alt: "Prestige Realty - Luxury Properties", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Prestige Realty | Luxury Real Estate", + description: "Discover premium properties and expert real estate services", + images: ["http://img.b2bpic.net/free-photo/looking-up-through-history-elegant-staircase-old-building_169016-69867.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +59,9 @@ export default function RootLayout({ return ( - + {children}