diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 22fc51a..97ba69f 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -99,7 +99,7 @@ export default function AboutPage() { icon: MapPin, }, ]} - imageSrc="http://img.b2bpic.net/free-photo/elegant-stools-table-huge-bright-hall_1127-3339.jpg" + imageSrc="http://img.b2bpic.net/free-photo/elegant-stools-table-huge-bright-hall_1127-3339.jpg?_wi=2" imageAlt="Luxe Properties office team" imagePosition="right" mediaAnimation="slide-up" @@ -123,7 +123,7 @@ export default function AboutPage() { subtitle: "Prime addresses with proven appreciation", description: "Our properties are positioned in the most sought-after neighborhoods with strong market fundamentals, ensuring long-term value and appreciation potential for investors and residents alike.", - imageSrc: "http://img.b2bpic.net/free-photo/glassy-skyscrapers-from-sunset-cityscape_23-2148184229.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/glassy-skyscrapers-from-sunset-cityscape_23-2148184229.jpg?_wi=9", imageAlt: "Luxury penthouse with city views", }, { @@ -133,7 +133,7 @@ export default function AboutPage() { subtitle: "World-class design meets functionality", description: "Each development showcases innovative architecture blended with practical elegance. Our award-winning design teams ensure every detail contributes to an exceptional living experience.", - imageSrc: "http://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg?_wi=7", imageAlt: "Exclusive beachfront villa", }, { @@ -143,7 +143,7 @@ export default function AboutPage() { subtitle: "Luxury facilities that enhance lifestyle", description: "From state-of-the-art fitness centers to concierge services, our properties feature comprehensive amenities designed for sophisticated living and convenience.", - imageSrc: "http://img.b2bpic.net/free-photo/modern-building-with-closed-windows_23-2148252721.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/modern-building-with-closed-windows_23-2148252721.jpg?_wi=8", imageAlt: "Contemporary urban townhouse", }, ]} @@ -172,7 +172,7 @@ export default function AboutPage() { name: "Alexander Johnson", role: "CEO & Founder", imageSrc: - "http://img.b2bpic.net/free-photo/portrait-handsome-confident-stylish-hipster-lambersexual-model-sexy-modern-man-dressed-black-elegant-suit-fashion-male-posing-studio-white-background_158538-27234.jpg", + "http://img.b2bpic.net/free-photo/portrait-handsome-confident-stylish-hipster-lambersexual-model-sexy-modern-man-dressed-black-elegant-suit-fashion-male-posing-studio-white-background_158538-27234.jpg?_wi=2", imageAlt: "Alexander Johnson", }, { @@ -180,7 +180,7 @@ export default function AboutPage() { name: "Patricia Chen", role: "Chief Development Officer", imageSrc: - "http://img.b2bpic.net/free-photo/business-lady-looking-copyspace-with-interest_1262-2957.jpg", + "http://img.b2bpic.net/free-photo/business-lady-looking-copyspace-with-interest_1262-2957.jpg?_wi=2", imageAlt: "Patricia Chen", }, { @@ -188,14 +188,14 @@ export default function AboutPage() { name: "Robert Williams", role: "Head of Design", imageSrc: - "http://img.b2bpic.net/free-photo/vertical-shot-well-dressed-male-leaning-against-wall-looking-camera_181624-15421.jpg", + "http://img.b2bpic.net/free-photo/vertical-shot-well-dressed-male-leaning-against-wall-looking-camera_181624-15421.jpg?_wi=2", imageAlt: "Robert Williams", }, { id: "4", name: "Michelle Rodriguez", role: "Director of Sales", - imageSrc: "http://img.b2bpic.net/free-photo/stylish-woman-works-laptop-desk-modern-office_78826-2813.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/stylish-woman-works-laptop-desk-modern-office_78826-2813.jpg?_wi=2", imageAlt: "Michelle Rodriguez", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c1f48a0..46f5cb0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,48 @@ 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"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "Luxe Properties | Premium Luxury Real Estate Development", + description: "Discover luxury living with Luxe Properties. Award-winning real estate development featuring premium penthouse, villas, and townhouses in prime locations.", + keywords: "luxury real estate, property development, premium properties, investment properties, luxury homes", + metadataBase: new URL("https://luxeproperties.com"), + alternates: { + canonical: "https://luxeproperties.com", + }, + openGraph: { + title: "Luxe Properties | Luxury Real Estate", + description: "Discover luxury living with Luxe Properties. Award-winning real estate development featuring premium properties.", + url: "https://luxeproperties.com", + siteName: "Luxe Properties", + type: "website", + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -31,7 +52,9 @@ export default function RootLayout({ return ( - + {children}