diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 7eaec11..1780e0e 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -103,7 +103,7 @@ export default function AboutPage() { title: "Market Intelligence", description: "Deep understanding of Winchester luxury market trends, property values, and buyer preferences to position your property competitively.", tag: "Analysis", - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-bedroom-with-interior-stuff-beige-tones_181624-33128.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-bedroom-with-interior-stuff-beige-tones_181624-33128.jpg?_wi=3", imageAlt: "Market analysis", }, { @@ -111,7 +111,7 @@ export default function AboutPage() { title: "Personalized Service", description: "Tailored strategies and white-glove service designed specifically for your unique real estate goals and circumstances.", tag: "Service", - imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-marble-backsplash-blue-kitchen-cabinets_169016-68873.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-marble-backsplash-blue-kitchen-cabinets_169016-68873.jpg?_wi=3", imageAlt: "Client service", }, { @@ -119,7 +119,7 @@ export default function AboutPage() { title: "Results-Driven Solutions", description: "Proven negotiation skills and strategic marketing to maximize value and ensure successful transaction outcomes.", tag: "Results", - imageSrc: "http://img.b2bpic.net/free-photo/modern-cafe-interior-design_53876-138977.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/modern-cafe-interior-design_53876-138977.jpg?_wi=3", imageAlt: "Successful results", }, ]} 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}