4 Commits

Author SHA1 Message Date
48ed5068f7 Update src/app/page.tsx 2026-04-25 08:08:59 +00:00
44a09a76db Update src/app/page.tsx 2026-04-25 08:08:29 +00:00
0595b199f7 Merge version_2 into main
Merge version_2 into main
2026-04-25 08:07:35 +00:00
91fac83b64 Merge version_2 into main
Merge version_2 into main
2026-04-25 08:07:08 +00:00

View File

@@ -1,7 +1,7 @@
"use client"; "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import ProductCardFour from '@/components/sections/product/ProductCardFour'; import ProductCardFour from '@/components/sections/product/ProductCardFour';
import MediaAbout from '@/components/sections/about/MediaAbout'; import MediaAbout from '@/components/sections/about/MediaAbout';
@@ -28,7 +28,7 @@ export default function LandingPage() {
headingFontWeight="medium" headingFontWeight="medium"
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleCentered <NavbarStyleApple
brandName="Luxe Properties" brandName="Luxe Properties"
navItems={[ navItems={[
{ name: "Properties", id: "properties" }, { name: "Properties", id: "properties" },
@@ -38,7 +38,6 @@ export default function LandingPage() {
{ name: "Testimonials", id: "testimonials" }, { name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ text: "Schedule Viewing", href: "contact" }}
/> />
</div> </div>
@@ -50,25 +49,13 @@ export default function LandingPage() {
tag="Premium Collections" tag="Premium Collections"
tagIcon={Sparkles} tagIcon={Sparkles}
buttons={[ buttons={[
{ text: "Explore Properties", href: "properties" }, { text: "Explore Properties", href: "#properties" },
{ text: "Contact Agent", href: "contact" } { text: "Contact Agent", href: "#contact" }
]} ]}
mediaItems={[ mediaItems={[
{ { imageSrc: "https://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg?_wi=1", imageAlt: "Luxury penthouse in Dubai Marina" },
imageSrc: "https://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg?_wi=1", imageAlt: "Luxury penthouse in Dubai Marina" { imageSrc: "https://img.b2bpic.net/free-photo/shanghai-night-china_1127-3170.jpg?_wi=1", imageAlt: "Dubai skyline at night" },
}, { imageSrc: "https://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920926.jpg?_wi=1", imageAlt: "Modern luxury exterior design" }
{
imageSrc: "https://img.b2bpic.net/free-photo/shanghai-night-china_1127-3170.jpg?_wi=1", imageAlt: "Dubai skyline at night"
},
{
imageSrc: "https://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920926.jpg?_wi=1", imageAlt: "Modern luxury exterior design"
},
{
imageSrc: "https://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920931.jpg?_wi=1", imageAlt: "Contemporary luxury architecture"
},
{
imageSrc: "https://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg?_wi=2", imageAlt: "Spacious modern interior with panoramic view"
}
]} ]}
mediaAnimation="blur-reveal" mediaAnimation="blur-reveal"
/> />
@@ -86,19 +73,12 @@ export default function LandingPage() {
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
carouselMode="buttons" carouselMode="buttons"
buttons={[ buttons={[
{ text: "See all properties", href: "/properties" } { text: "See all properties", href: "#" }
]} ]}
products={[ products={[
{ { id: "1", name: "Palm Jumeirah Villa", price: "AED 12,500,000", variant: "5 Bed Villa | Beachfront", imageSrc: "https://img.b2bpic.net/free-photo/shanghai-night-china_1127-3170.jpg?_wi=2", isFavorited: false },
id: "1", name: "Palm Jumeirah Villa", price: "AED 12,500,000", variant: "5 Bed Villa | Beachfront", imageSrc: "https://img.b2bpic.net/free-photo/shanghai-night-china_1127-3170.jpg?_wi=2", imageAlt: "Luxury villa on Palm Jumeirah", isFavorited: false, { id: "2", name: "Downtown Dubai Penthouse", price: "AED 8,750,000", variant: "4 Bed Penthouse | City View", imageSrc: "https://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920926.jpg?_wi=2", isFavorited: false },
onProductClick: () => window.location.href = "/property/palm-jumeirah-villa" { id: "3", name: "Emirates Hills Townhouse", price: "AED 6,200,000", variant: "4 Bed Townhouse | Golf View", imageSrc: "https://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920931.jpg?_wi=2", isFavorited: false }
},
{
id: "2", name: "Downtown Dubai Penthouse", price: "AED 8,750,000", variant: "4 Bed Penthouse | City View", imageSrc: "https://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920926.jpg?_wi=2", imageAlt: "Modern penthouse in Downtown Dubai", isFavorited: false
},
{
id: "3", name: "Emirates Hills Townhouse", price: "AED 6,200,000", variant: "4 Bed Townhouse | Golf View", imageSrc: "https://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920931.jpg?_wi=2", imageAlt: "Contemporary townhouse in Emirates Hills", isFavorited: false
}
]} ]}
/> />
</div> </div>
@@ -106,10 +86,9 @@ export default function LandingPage() {
<div id="about" data-section="about"> <div id="about" data-section="about">
<MediaAbout <MediaAbout
title="Your Trusted Dubai Real Estate Partner" title="Your Trusted Dubai Real Estate Partner"
description="With over 15 years of excellence in Dubai's luxury real estate market, we have established ourselves as the premier boutique agency for discerning international clientele. Our expert team specializes in sourcing and curating the finest properties across Dubai's most exclusive communities. We combine market mastery with personalized service, ensuring every transaction is seamless and satisfying." description="With over 15 years of excellence in Dubai's luxury real estate market, we have established ourselves as the premier boutique agency for discerning international clientele."
tag="About Us" tag="About Us"
imageSrc="https://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920926.jpg?_wi=3" imageSrc="https://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920926.jpg?_wi=3"
imageAlt="Luxe Properties Dubai team"
useInvertedBackground={false} useInvertedBackground={false}
buttons={[ buttons={[
{ text: "Learn Our Story", href: "#" } { text: "Learn Our Story", href: "#" }
@@ -120,21 +99,17 @@ export default function LandingPage() {
<div id="services" data-section="services"> <div id="services" data-section="services">
<FeatureCardThree <FeatureCardThree
title="Our Services & Expertise" title="Our Services & Expertise"
description="Comprehensive real estate solutions tailored to meet your unique needs and aspirations." description="Comprehensive real estate solutions tailored to meet your unique needs."
tag="Professional Services" tag="Professional Services"
tagIcon={Shield} tagIcon={Shield}
textboxLayout="default" textboxLayout="default"
animationType="blur-reveal" animationType="blur-reveal"
useInvertedBackground={true} useInvertedBackground={true}
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
carouselMode="buttons"
features={[ features={[
{ title: "Property Selection", description: "Exclusive access to off-market and hand-selected luxury properties", imageSrc: "https://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg?_wi=3", imageAlt: "Property selection" }, { title: "Property Selection", description: "Exclusive access to premium listings", imageSrc: "https://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg?_wi=3" },
{ title: "Investment Advisory", description: "Expert insights into market trends and investment opportunities", imageSrc: "https://img.b2bpic.net/free-photo/shanghai-night-china_1127-3170.jpg?_wi=3", imageAlt: "Investment advisory" }, { title: "Investment Advisory", description: "Expert market insights", imageSrc: "https://img.b2bpic.net/free-photo/shanghai-night-china_1127-3170.jpg?_wi=3" },
{ title: "Negotiation & Closing", description: "Strategic negotiation and seamless transaction management", imageSrc: "https://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920926.jpg?_wi=4", imageAlt: "Negotiation and closing" }, { title: "Negotiation & Closing", description: "Strategic transaction management", imageSrc: "https://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920926.jpg?_wi=4" }
{ title: "Legal Compliance", description: "Full support with documentation, permits, and regulatory compliance", imageSrc: "https://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920931.jpg?_wi=3", imageAlt: "Legal compliance" },
{ title: "Property Management", description: "Professional management services for rental income optimization", imageSrc: "https://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg?_wi=4", imageAlt: "Property management" },
{ title: "Concierge Services", description: "White-glove concierge support for renovations and lifestyle services", imageSrc: "https://img.b2bpic.net/free-photo/shanghai-night-china_1127-3170.jpg?_wi=4", imageAlt: "Concierge services" }
]} ]}
/> />
</div> </div>
@@ -142,16 +117,15 @@ export default function LandingPage() {
<div id="team" data-section="team"> <div id="team" data-section="team">
<TeamCardOne <TeamCardOne
title="Executive Team" title="Executive Team"
description="Meet the visionary leaders guiding Luxe Properties with expertise and dedication." description="Meet the visionary leaders guiding Luxe Properties."
tag="Our Leadership" tag="Our Leadership"
textboxLayout="default" textboxLayout="default"
animationType="blur-reveal" animationType="blur-reveal"
useInvertedBackground={false} useInvertedBackground={false}
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
members={[ members={[
{ id: "1", name: "Hassan Al-Maktoum", role: "Chief Executive Officer", imageSrc: "https://img.b2bpic.net/free-photo/business-people-using-digital-tablet-airport_107420-95868.jpg", imageAlt: "Hassan Al-Maktoum" }, { id: "1", name: "Hassan Al-Maktoum", role: "CEO", imageSrc: "https://img.b2bpic.net/free-photo/business-people-using-digital-tablet-airport_107420-95868.jpg" },
{ id: "2", name: "Layla Al-Mansoori", role: "Chief Operating Officer", imageSrc: "https://img.b2bpic.net/free-photo/attractive-satisfied-young-female-entrepreneur-standing-proud-smiling-with-crossed-hands-confident_197531-23012.jpg?id=13871705", imageAlt: "Layla Al-Mansoori" }, { id: "2", name: "Layla Al-Mansoori", role: "COO", imageSrc: "https://img.b2bpic.net/free-photo/attractive-satisfied-young-female-entrepreneur-standing-proud-smiling-with-crossed-hands-confident_197531-23012.jpg?id=13871705" }
{ id: "3", name: "Marcus Wellington", role: "Chief Investment Officer", imageSrc: "https://img.b2bpic.net/free-photo/young-businessman-with-clipboard_1098-602.jpg", imageAlt: "Marcus Wellington" }
]} ]}
/> />
</div> </div>
@@ -159,7 +133,7 @@ export default function LandingPage() {
<div id="metrics" data-section="metrics"> <div id="metrics" data-section="metrics">
<MetricCardThree <MetricCardThree
title="By The Numbers" title="By The Numbers"
description="Our proven track record speaks to our commitment and success in Dubai's luxury real estate market." description="Our proven track record in Dubai's luxury real estate market."
tag="Track Record" tag="Track Record"
tagIcon={Award} tagIcon={Award}
textboxLayout="default" textboxLayout="default"
@@ -168,8 +142,7 @@ export default function LandingPage() {
metrics={[ metrics={[
{ id: "1", icon: Home, title: "Properties Sold", value: "450+" }, { id: "1", icon: Home, title: "Properties Sold", value: "450+" },
{ id: "2", icon: Users, title: "Satisfied Clients", value: "650+" }, { id: "2", icon: Users, title: "Satisfied Clients", value: "650+" },
{ id: "3", icon: DollarSign, title: "Total Value", value: "$2.3B" }, { id: "3", icon: DollarSign, title: "Total Value", value: "$2.3B" }
{ id: "4", icon: TrendingUp, title: "International", value: "45 Countries" }
]} ]}
/> />
</div> </div>
@@ -177,14 +150,13 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardFive <TestimonialCardFive
title="What Our Clients Say" title="What Our Clients Say"
description="Experience through the words of satisfied buyers and investors who found their dream properties with us." description="Experience through the words of our satisfied clients."
tag="Client Testimonials" tag="Client Testimonials"
tagIcon={Star} tagIcon={Star}
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
testimonials={[ testimonials={[
{ id: "1", name: "Ahmed Al Mansouri", date: "Sept 2024", title: "Exceptional Service", quote: "The team at Luxe Properties demonstrated outstanding knowledge.", tag: "Investor", avatarSrc: "https://img.b2bpic.net/free-photo/business-people-using-digital-tablet-airport_107420-95868.jpg", imageSrc: "https://img.b2bpic.net/free-photo/shanghai-night-china_1127-3170.jpg?_wi=5" }, { id: "1", name: "Ahmed Al Mansouri", date: "Sept 2024", title: "Exceptional Service", quote: "The team at Luxe Properties demonstrated outstanding knowledge.", tag: "Investor", avatarSrc: "https://img.b2bpic.net/free-photo/business-people-using-digital-tablet-airport_107420-95868.jpg" }
{ id: "2", name: "Sarah Johnson", date: "Aug 2024", title: "Professionalism", quote: "Their professionalism and attention to detail were impeccable.", tag: "Penthouse", avatarSrc: "https://img.b2bpic.net/free-photo/attractive-satisfied-young-female-entrepreneur-standing-proud-smiling-with-crossed-hands-confident_197531-23012.jpg?id=13871705", imageSrc: "https://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920926.jpg?_wi=5" }
]} ]}
/> />
</div> </div>
@@ -194,11 +166,10 @@ export default function LandingPage() {
tag="Support & Inquiries" tag="Support & Inquiries"
tagIcon={Mail} tagIcon={Mail}
title="How can we assist you?" title="How can we assist you?"
description="Whether you are looking for property management support, investment advice, or have questions about a listing, our dedicated support team is here to help." description="Our dedicated support team is here to help with your inquiries."
background={{ variant: "sparkles-gradient" }} background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false} useInvertedBackground={false}
buttons={[ buttons={[
{ text: "Submit Support Ticket", href: "#" },
{ text: "Schedule Consultation", href: "#" } { text: "Schedule Consultation", href: "#" }
]} ]}
/> />
@@ -207,9 +178,9 @@ export default function LandingPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterSimple <FooterSimple
columns={[ columns={[
{ title: "Luxe Properties", items: [{ label: "Corporate HQ, Dubai" }, { label: "office@luxeprop.ae" }, { label: "+971 4 000 0000" }] }, { title: "Luxe Properties", items: [{ label: "Corporate HQ, Dubai" }, { label: "office@luxeprop.ae" }] },
{ title: "Company", items: [{ label: "About", href: "#about" }, { label: "Team", href: "#team" }, { label: "Contact", href: "#contact" }] }, { title: "Company", items: [{ label: "About", href: "#about" }, { label: "Team", href: "#team" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }, { label: "Licensing", href: "#" }] } { title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] }
]} ]}
bottomLeftText="© 2025 Luxe Properties LLC. Registered in Dubai, UAE." bottomLeftText="© 2025 Luxe Properties LLC. Registered in Dubai, UAE."
bottomRightText="Redefining Real Estate Excellence." bottomRightText="Redefining Real Estate Excellence."