From 8a51aac5c35573d3182fae5ca67e20e83becf074 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 02:30:42 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d09ce2..dfa019e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ 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"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Figtree } 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 figtree = Figtree({ variable: "--font-figtree", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Ed Chapman - Luxury Real Estate Agent Winchester VA | ERA Oakcrest", + description: "Discover luxury homes in Winchester, VA with Ed Chapman of ERA Oakcrest Realty. Expert real estate services, 5-star rated agent with 10+ years experience.", + keywords: "real estate agent Winchester VA, luxury homes Winchester, ERA Oakcrest Realty, property sales, real estate broker", + metadataBase: new URL("https://edchapman-realtor.com"), + alternates: { + canonical: "https://edchapman-realtor.com", + }, + openGraph: { + title: "Ed Chapman - Luxury Real Estate Winchester VA", + description: "Expert luxury real estate services in Winchester, VA. Find your dream home with Ed Chapman of ERA Oakcrest Realty.", + url: "https://edchapman-realtor.com", + siteName: "Ed Chapman - ERA Oakcrest Realty", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/vertical-low-angle-shot-stone-metal-building-blue-sky_181624-7605.jpg", + alt: "Luxury property showcase", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Ed Chapman - Luxury Real Estate Winchester VA", + description: "Discover luxury homes in Winchester, VA with ERA Oakcrest Realty's top-rated agent.", + images: ["http://img.b2bpic.net/free-photo/vertical-low-angle-shot-stone-metal-building-blue-sky_181624-7605.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}