diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index ac3e3b3..b880372 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -100,21 +100,21 @@ export default function AboutPage() { id: 1, title: "Market Expertise", description: "Our team combines decades of collective experience with cutting-edge market analysis to serve buyers, sellers, and investors.", - 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=3", imageAlt: "Expert real estate professionals", }, { id: 2, title: "Client-Focused Service", description: "Every engagement begins with understanding our clients' unique goals, preferences, and timelines for a tailored approach.", - imageSrc: "http://img.b2bpic.net/free-photo/male-real-estate-agent-doing-business-showing-house-potential-buying-couple_23-2150164709.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/male-real-estate-agent-doing-business-showing-house-potential-buying-couple_23-2150164709.jpg?_wi=3", imageAlt: "Client consultation and partnership", }, { id: 3, title: "Proven Results", description: "Our track record speaks volumes: thousands of satisfied clients, record-breaking sales, and industry-leading transaction speeds.", - imageSrc: "http://img.b2bpic.net/free-vector/user-panel-dashboard-template_23-2148376374.jpg", + imageSrc: "http://img.b2bpic.net/free-vector/user-panel-dashboard-template_23-2148376374.jpg?_wi=3", imageAlt: "Performance metrics and results", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da4fe5a..45db82d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Lato } 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 { Lato } 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 lato = Lato({ variable: "--font-lato", @@ -20,6 +24,34 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"] }); +export const metadata: Metadata = { + title: "Luxe Properties | Premium Real Estate", + description: "Discover luxury homes and exceptional properties with Luxe Properties. Expert real estate services for buyers, sellers, and investors.", + keywords: "luxury real estate, premium homes, property listings, real estate agent, luxury residences", + openGraph: { + title: "Luxe Properties | Premium Real Estate", + description: "Discover luxury homes and exceptional properties with Luxe Properties.", + siteName: "Luxe Properties", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/apartment-building-with-many-windows-air-conditioners_181624-3696.jpg", + alt: "luxury modern home exterior architecture", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Luxe Properties | Premium Real Estate", + description: "Discover luxury homes and exceptional properties with Luxe Properties.", + images: ["http://img.b2bpic.net/free-photo/apartment-building-with-many-windows-air-conditioners_181624-3696.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +60,9 @@ export default function RootLayout({ return ( - + {children}