diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index d22180a..57e9c94 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -121,28 +121,28 @@ export default function AboutPage() { id: "1", name: "Rebecca Sterling", role: "Senior Agent", - imageSrc: "http://img.b2bpic.net/free-photo/middle-age-businessman-smiling-happy-standing-city_839833-25759.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/middle-age-businessman-smiling-happy-standing-city_839833-25759.jpg?_wi=2", imageAlt: "Rebecca Sterling headshot", }, { id: "2", name: "Marcus Johnson", role: "Investment Specialist", - imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-successful-happy-smiling-young-woman-beige-jacket-glasses-standing-lobby-office-reception-greeting-business-client-with-pleasant-grin-inviting-company_197531-30568.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-successful-happy-smiling-young-woman-beige-jacket-glasses-standing-lobby-office-reception-greeting-business-client-with-pleasant-grin-inviting-company_197531-30568.jpg?_wi=2", imageAlt: "Marcus Johnson headshot", }, { id: "3", name: "Elena Vasquez", role: "Luxury Homes Expert", - imageSrc: "http://img.b2bpic.net/free-photo/bearded-worker-crossed-arms-office_1139-202.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/bearded-worker-crossed-arms-office_1139-202.jpg?_wi=2", imageAlt: "Elena Vasquez headshot", }, { id: "4", name: "Thomas Bennett", role: "Market Analyst", - imageSrc: "http://img.b2bpic.net/free-photo/senior-businessman-with-arms-crossed-outside-modern-office-building_1139-1083.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/senior-businessman-with-arms-crossed-outside-modern-office-building_1139-1083.jpg?_wi=2", imageAlt: "Thomas Bennett headshot", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 282ff27..28c12b8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Nunito_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 { Nunito_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 nunitoSans = Nunito_Sans({ variable: "--font-nunito-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "HAR Homes | Luxury Real Estate & Premium Properties", + description: "Discover luxury homes and investment properties with HAR Homes. Expert real estate agents specializing in premium properties. Schedule your consultation today.", + keywords: "luxury homes, real estate, property listings, home buying, investment properties, real estate agents, premium homes", + metadataBase: new URL("https://harhomes.com"), + alternates: { + canonical: "https://harhomes.com", + }, + openGraph: { + title: "HAR Homes | Luxury Real Estate", + description: "Find your dream home with HAR Homes. Premium properties and expert guidance.", + type: "website", + siteName: "HAR Homes", + images: [ + { + url: "http://img.b2bpic.net/free-photo/city-hall-heidelberg_181624-30202.jpg", + alt: "Luxury home from HAR Homes", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "HAR Homes | Luxury Real Estate", + description: "Discover premium properties and luxury homes with our expert team.", + images: ["http://img.b2bpic.net/free-photo/city-hall-heidelberg_181624-30202.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +63,9 @@ export default function RootLayout({ return ( - + {children}