diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 439b7ff..abdf4ac 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -83,7 +83,7 @@ export default function AboutPage() { title: "Property Sales", description: "Expert guidance through the entire buying and selling process with market expertise.", tag: "Sales", - imageSrc: "http://img.b2bpic.net/free-photo/smiling-friends-library_23-2147678923.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/smiling-friends-library_23-2147678923.jpg?_wi=2", imageAlt: "Real estate office", }, { @@ -91,7 +91,7 @@ export default function AboutPage() { title: "Property Management", description: "Professional management services for your rental properties and investments.", tag: "Management", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-asian-woman-use-smart-mobile-phone-with-coffee-cup_74190-10450.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-asian-woman-use-smart-mobile-phone-with-coffee-cup_74190-10450.jpg?_wi=4", imageAlt: "Property management", }, { @@ -99,7 +99,7 @@ export default function AboutPage() { title: "Investment Consulting", description: "Strategic advice on real estate investments and portfolio growth opportunities.", tag: "Investing", - imageSrc: "http://img.b2bpic.net/free-photo/modern-business-buildings-financial-district_1359-347.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/modern-business-buildings-financial-district_1359-347.jpg?_wi=4", imageAlt: "Investment property", }, ]} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index f1b067d..66fb524 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -72,7 +72,7 @@ export default function ContactPage() { title="Get in Touch With Us" description="Ready to find your perfect property? Contact our expert team today and let's start your real estate journey together." tag="Contact" - imageSrc="http://img.b2bpic.net/free-photo/view-luxurious-villa-with-modern-architectural-design_23-2151694117.jpg" + imageSrc="http://img.b2bpic.net/free-photo/view-luxurious-villa-with-modern-architectural-design_23-2151694117.jpg?_wi=2" imageAlt="luxury modern house exterior sunset" showBlur={true} showDimOverlay={false} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 590a34c..24cfc7b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,45 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Public_Sans } 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 { Public_Sans } 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 publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Estate Pro - Premium Real Estate Services", + description: "Find your dream property with Estate Pro. Expert real estate agents offering property sales, management, and investment consulting services.", + keywords: "real estate, property sales, home buying, real estate agent, investment properties, property management", + openGraph: { + title: "Estate Pro - Premium Real Estate Services", + description: "Discover premium properties and expert real estate guidance with Estate Pro's award-winning team.", + type: "website", + siteName: "Estate Pro", + }, + twitter: { + card: "summary_large_image", + title: "Estate Pro - Premium Real Estate Services", + description: "Find your dream property with expert real estate agents", + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +48,9 @@ export default function RootLayout({ return ( - + {children}