2 Commits

Author SHA1 Message Date
5324217092 Update src/app/page.tsx 2026-02-19 05:00:03 +00:00
27a39cf14f Merge version_6 into main
Merge version_6 into main
2026-02-19 04:51:06 +00:00

View File

@@ -10,6 +10,7 @@ import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
import { Sparkles, Home, Shield, Award, Star, Mail, TrendingUp, DollarSign, FileCheck, Building2, Users } from "lucide-react";
export default function LandingPage() {
@@ -33,6 +34,7 @@ export default function LandingPage() {
{ name: "Properties", id: "properties" },
{ name: "About", id: "about" },
{ name: "Services", id: "services" },
{ name: "Team", id: "team" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" }
]}
@@ -149,6 +151,32 @@ export default function LandingPage() {
/>
</div>
<div id="team" data-section="team">
<TeamCardEleven
title="Executive Team"
description="Meet the visionary leaders guiding Luxe Properties with expertise and dedication."
tag="Our Leadership"
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
groups={[
{
id: "executives", groupTitle: "Executive Leadership", members: [
{
id: "1", title: "Hassan Al-Maktoum", subtitle: "Chief Executive Officer", detail: "hassan@luxeproperties.ae", imageSrc: "https://img.b2bpic.net/free-photo/business-people-using-digital-tablet-airport_107420-95868.jpg", imageAlt: "Hassan Al-Maktoum"
},
{
id: "2", title: "Layla Al-Mansoori", subtitle: "Chief Operating Officer", detail: "layla@luxeproperties.ae", imageSrc: "https://img.b2bpic.net/free-photo/businessman-discussing-document-with-colleague_107420-84875.jpg", imageAlt: "Layla Al-Mansoori"
},
{
id: "3", title: "Marcus Wellington", subtitle: "Chief Investment Officer", detail: "marcus@luxeproperties.ae", imageSrc: "https://img.b2bpic.net/free-photo/young-businessman-with-clipboard_1098-602.jpg", imageAlt: "Marcus Wellington"
}
]
}
]}
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardThree
title="By The Numbers"
@@ -232,6 +260,7 @@ export default function LandingPage() {
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Our Services", href: "#services" },
{ label: "Executive Team", href: "#team" },
{ label: "Properties", href: "#properties" },
{ label: "Contact", href: "#contact" }
]