diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 76603e6..c8f3940 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -95,7 +95,7 @@ export default function AboutPage() { }, ]} buttonAnimation="opacity" - imageSrc="http://img.b2bpic.net/free-photo/fiance-with-friends-drining-wedding-day-indoors_8353-12087.jpg" + imageSrc="http://img.b2bpic.net/free-photo/fiance-with-friends-drining-wedding-day-indoors_8353-12087.jpg?_wi=2" imageAlt="luxury real estate office professional team" useInvertedBackground={false} /> @@ -124,21 +124,21 @@ export default function AboutPage() { id: "service-1", title: "Exclusive Property Sourcing", description: "Access to off-market listings and pre-launch opportunities. Our global network ensures you discover properties before they reach the public market.", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-working-as-real-estate-agents_23-2151065011.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-working-as-real-estate-agents_23-2151065011.jpg?_wi=2", imageAlt: "luxury property listing exclusive real estate", }, { id: "service-2", title: "Investment Analysis & Strategy", description: "Data-driven market insights and portfolio optimization. We analyze appreciation potential, rental yields, and long-term value positioning.", - imageSrc: "http://img.b2bpic.net/free-photo/man-big-center-using-smartphone_171337-19943.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/man-big-center-using-smartphone_171337-19943.jpg?_wi=2", imageAlt: "investment analysis market data real estate", }, { id: "service-3", title: "Discrete Transaction Management", description: "Confidential handling of complex transactions. Our expertise in high-value deals ensures smooth negotiations and seamless closings.", - imageSrc: "http://img.b2bpic.net/free-photo/breakup-marriage-couple-with-divorce-certification_53876-14774.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/breakup-marriage-couple-with-divorce-certification_53876-14774.jpg?_wi=2", imageAlt: "real estate transaction professional negotiation", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d09ce2..9b904e2 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: "Prestige Estates | Luxury Real Estate", + description: "Discover exceptional luxury properties worldwide. Expert real estate advisory for high-net-worth investors. Three decades of excellence.", + keywords: "luxury real estate, high-end properties, exclusive homes, real estate investment, luxury estate agent", + metadataBase: new URL("https://prestigeestates.com"), + alternates: { + canonical: "https://prestigeestates.com", + }, + openGraph: { + title: "Prestige Estates | Luxury Real Estate", + description: "Discover exceptional luxury properties worldwide. Expert real estate advisory for high-net-worth investors.", + url: "https://prestigeestates.com", + siteName: "Prestige Estates", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/woman-sauna-sunlight-premium-sauna-panoramic-view_169016-68907.jpg", + alt: "luxury oceanfront villa panoramic sea views", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Prestige Estates | Luxury Real Estate", + description: "Discover exceptional luxury properties worldwide. Expert real estate advisory.", + images: ["http://img.b2bpic.net/free-photo/woman-sauna-sunlight-premium-sauna-panoramic-view_169016-68907.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}