From 41e0e2103f705c0c33a5c8dbf062a4fa7f5ed464 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 02:51:50 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 9fa13de..62e8d41 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -50,7 +50,7 @@ export default function AboutPage() { description="With over 20 years of experience in luxury real estate, we specialize in connecting discerning clients with extraordinary properties worldwide." subdescription="Our team of expert agents understands the nuances of high-end property transactions and provides personalized service at every step." icon={Crown} - imageSrc="http://img.b2bpic.net/free-photo/portrait-confident-businesswoman-having-coffee_23-2148452628.jpg" + imageSrc="http://img.b2bpic.net/free-photo/portrait-confident-businesswoman-having-coffee_23-2148452628.jpg?_wi=2" imageAlt="Prestige Estates office" mediaAnimation="blur-reveal" useInvertedBackground={true} @@ -74,28 +74,28 @@ export default function AboutPage() { id: "1", name: "Victoria Ashford", role: "Founder & CEO", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-business-office-business-center_1303-20363.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-business-office-business-center_1303-20363.jpg?_wi=2", imageAlt: "Victoria Ashford, CEO", }, { id: "2", name: "David Chen", role: "Head of Acquisitions", - imageSrc: "http://img.b2bpic.net/free-photo/businessman-working-office-man-looks-camera-guy-guy-is-standing-by-map_1157-40449.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/businessman-working-office-man-looks-camera-guy-guy-is-standing-by-map_1157-40449.jpg?_wi=2", imageAlt: "David Chen, Head of Acquisitions", }, { id: "3", name: "Sophie Laurent", role: "International Market Specialist", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-successful-businesswoman-suit-cross-arms-chest-smile-look-confident_1258-194088.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-successful-businesswoman-suit-cross-arms-chest-smile-look-confident_1258-194088.jpg?_wi=2", imageAlt: "Sophie Laurent, Market Specialist", }, { id: "4", name: "Michael Sterling", role: "Investment Advisor", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman-sitting-sofa-waiting-area_107420-95816.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman-sitting-sofa-waiting-area_107420-95816.jpg?_wi=2", imageAlt: "Michael Sterling, Investment Advisor", }, ]} -- 2.49.1 From 9a406b8921d054c05694d258e3e874f5ef427129 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 02:51:51 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 59 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 47 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a02c995..8925618 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Mulish } 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 { Mulish } 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 mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "Luxury Real Estate - Prestige Estates", + description: "Discover exclusive luxury properties worldwide. Expert agents specializing in high-end residential real estate transactions.", + keywords: "luxury real estate, prestige properties, exclusive estates, high-end homes", + metadataBase: new URL("https://prestigeestates.com"), + alternates: { + canonical: "https://prestigeestates.com", + }, + openGraph: { + title: "Prestige Estates - Luxury Real Estate", + description: "Discover extraordinary luxury properties in the world's most prestigious locations.", + url: "https://prestigeestates.com", + siteName: "Prestige Estates", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/hanging-lamp_1339-3167.jpg", + alt: "Prestige Estates - Luxury Properties", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Prestige Estates - Luxury Real Estate", + description: "Discover extraordinary luxury properties worldwide.", + images: ["http://img.b2bpic.net/free-photo/hanging-lamp_1339-3167.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -31,7 +64,9 @@ export default function RootLayout({ return ( - + {children}