Merge version_1 into main #1

Merged
bender merged 4 commits from version_1 into main 2026-03-12 10:19:48 +00:00
4 changed files with 69 additions and 46 deletions

View File

@@ -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",
},
]}

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +66,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -132,21 +132,21 @@ export default function HomePage() {
id: "1",
name: "Metropolitan Penthouse",
price: "$2,850,000",
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=1",
imageAlt: "Luxury penthouse with city views",
},
{
id: "2",
name: "Seaside Villa Estate",
price: "$3,200,000",
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=1",
imageAlt: "Exclusive beachfront villa",
},
{
id: "3",
name: "Modern Urban Townhouse",
price: "$1,450,000",
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=1",
imageAlt: "Contemporary urban townhouse",
},
]}
@@ -183,7 +183,7 @@ export default function HomePage() {
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=1"
imageAlt="Luxe Properties office team"
imagePosition="right"
mediaAnimation="slide-up"
@@ -208,7 +208,7 @@ export default function HomePage() {
title: "Strategic Locations",
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=2",
},
{
id: 2,
@@ -216,7 +216,7 @@ export default function HomePage() {
title: "Architectural Excellence",
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=2",
},
{
id: 3,
@@ -224,7 +224,7 @@ export default function HomePage() {
title: "Premium Amenities",
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=2",
},
]}
buttons={[{ text: "Explore Benefits", href: "#" }]}
@@ -297,7 +297,7 @@ export default function HomePage() {
tag: "Metropolitan Penthouse",
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-smiling-stylish-businessman-dark-background_613910-15034.jpg",
avatarAlt: "Sarah Mitchell",
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=3",
},
{
id: "2",
@@ -308,7 +308,7 @@ export default function HomePage() {
tag: "Seaside Villa Estate",
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-young-smiling-woman-looking-camera_23-2148187139.jpg",
avatarAlt: "James Richardson",
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=3",
},
{
id: "3",
@@ -319,7 +319,7 @@ export default function HomePage() {
tag: "Urban Townhouse",
avatarSrc: "http://img.b2bpic.net/free-photo/business-man-phone_23-2148018605.jpg",
avatarAlt: "Emma Chen",
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=3",
},
{
id: "4",
@@ -330,7 +330,7 @@ export default function HomePage() {
tag: "Metropolitan Penthouse",
avatarSrc: "http://img.b2bpic.net/free-photo/redhead-female-supervisor-dressed-elegant-suit-grey-background_613910-1352.jpg",
avatarAlt: "David Foster",
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=4",
},
{
id: "5",
@@ -341,7 +341,7 @@ export default function HomePage() {
tag: "Seaside Villa Estate",
avatarSrc: "http://img.b2bpic.net/free-photo/confident-african-american-businessman-black-classic-jacket-isolated-dark-background_613910-17869.jpg",
avatarAlt: "Victoria Lawson",
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=4",
},
{
id: "6",
@@ -352,7 +352,7 @@ export default function HomePage() {
tag: "Urban Townhouse",
avatarSrc: "http://img.b2bpic.net/free-photo/expressive-woman-posing-outdoor_344912-2952.jpg",
avatarAlt: "Michael Torres",
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=4",
},
]}
buttons={[{ text: "Read More Reviews", href: "#" }]}
@@ -374,28 +374,28 @@ export default function HomePage() {
id: "1",
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",
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?_wi=1",
imageAlt: "Alexander Johnson",
},
{
id: "2",
name: "Patricia Chen",
role: "Chief Development Officer",
imageSrc: "http://img.b2bpic.net/free-photo/business-lady-looking-copyspace-with-interest_1262-2957.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/business-lady-looking-copyspace-with-interest_1262-2957.jpg?_wi=1",
imageAlt: "Patricia Chen",
},
{
id: "3",
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",
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-well-dressed-male-leaning-against-wall-looking-camera_181624-15421.jpg?_wi=1",
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=1",
imageAlt: "Michelle Rodriguez",
},
]}

View File

@@ -91,21 +91,21 @@ export default function PropertiesPage() {
id: "1",
name: "Metropolitan Penthouse",
price: "$2,850,000",
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=5",
imageAlt: "Luxury penthouse with city views",
},
{
id: "2",
name: "Seaside Villa Estate",
price: "$3,200,000",
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=5",
imageAlt: "Exclusive beachfront villa",
},
{
id: "3",
name: "Modern Urban Townhouse",
price: "$1,450,000",
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=5",
imageAlt: "Contemporary urban townhouse",
},
]}
@@ -132,7 +132,7 @@ export default function PropertiesPage() {
title: "Prime Neighborhoods",
subtitle: "Strategic positions in high-demand areas",
description: "Our properties are located in neighborhoods with strong rental markets, excellent schools, vibrant communities, and easy access to transportation, dining, and entertainment.",
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=6",
},
{
id: 2,
@@ -140,7 +140,7 @@ export default function PropertiesPage() {
title: "Value Growth",
subtitle: "Strong historical appreciation rates",
description: "Properties in our portfolio consistently outperform market averages. With demographic growth and infrastructure development, your investment appreciates significantly over time.",
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=6",
},
{
id: 3,
@@ -148,7 +148,7 @@ export default function PropertiesPage() {
title: "Rental Potential",
subtitle: "Strong market rental yields",
description: "High demand for rental properties in our locations ensures consistent income streams. Professional management services available to maximize your returns.",
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=6",
},
]}
buttons={[{ text: "Schedule Tour", href: "#" }]}
@@ -175,7 +175,7 @@ export default function PropertiesPage() {
tag: "Metropolitan Penthouse",
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-smiling-stylish-businessman-dark-background_613910-15034.jpg",
avatarAlt: "Sarah Mitchell",
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=7",
},
{
id: "2",
@@ -186,7 +186,7 @@ export default function PropertiesPage() {
tag: "Metropolitan Penthouse",
avatarSrc: "http://img.b2bpic.net/free-photo/redhead-female-supervisor-dressed-elegant-suit-grey-background_613910-1352.jpg",
avatarAlt: "David Foster",
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=8",
},
{
id: "3",
@@ -197,7 +197,7 @@ export default function PropertiesPage() {
tag: "Urban Townhouse",
avatarSrc: "http://img.b2bpic.net/free-photo/expressive-woman-posing-outdoor_344912-2952.jpg",
avatarAlt: "Michael Torres",
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=7",
},
]}
buttons={[{ text: "View All Testimonials", href: "/" }]}