Files
4cec122b-e4a7-43e2-9e8a-da6…/src/app/about/page.tsx
2026-03-06 03:58:37 +00:00

162 lines
6.6 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import MediaAbout from "@/components/sections/about/MediaAbout";
import TeamCardOne from "@/components/sections/team/TeamCardOne";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import Link from "next/link";
import { Heart, Users, Mail } from "lucide-react";
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="mediumSmall"
sizing="mediumLarge"
background="none"
cardStyle="glass-elevated"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
brandName="Luxe Dubai Properties"
navItems={[
{ name: "Home", id: "/" },
{ name: "Properties", id: "/properties" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Schedule Viewing", href: "/contact" }}
/>
</div>
<div id="about" data-section="about">
<MediaAbout
title="Your Trusted Partner in Dubai Real Estate"
description="With over 15 years of expertise in luxury property management, we provide comprehensive solutions for discerning property owners. Our dedicated team ensures every property receives white-glove service, from maintenance and security to tenant relations and financial reporting. We pride ourselves on understanding the unique demands of high-net-worth individuals and corporate portfolios."
tag="About Us"
tagIcon={Heart}
tagAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/portrait-business-partners-greeting-one-another-by-handshaking-way-office_1150-3028.jpg"
imageAlt="Luxe Dubai Properties team"
buttons={[{ text: "Learn More About Our Services", href: "/services" }]}
buttonAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="team" data-section="team">
<TeamCardOne
title="Leadership Team"
description="Meet the experienced professionals dedicated to your property's success. Our leadership combines decades of real estate expertise with a passion for exceeding client expectations."
tag="Our Team"
tagIcon={Users}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
members={[
{
id: "1",
name: "Ahmed Al Maktoum",
role: "Chief Executive Officer",
imageSrc: "http://img.b2bpic.net/free-photo/handsome-gay-official-suit-looking-camera-front-view-bearded-caucasian-man-smiling-camera-getting-dressed-wedding-ceremony-with-lover-lgbt-love-marriage-concept_74855-22937.jpg",
imageAlt: "Ahmed Al Maktoum",
},
{
id: "2",
name: "Fatima Al Mansouri",
role: "Head of Operations",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-female-real-estate-agent-standing-house-entrance-smiling-woman-with-short-graying-hair-pink-suit-getting-ready-meet-customers-real-estate-business-work-concept_74855-22183.jpg",
imageAlt: "Fatima Al Mansouri",
},
{
id: "3",
name: "Mohammed Al Zaabi",
role: "Investment Director",
imageSrc: "http://img.b2bpic.net/free-photo/confident-middle-aged-businesswoman-posing-near-office-building_1262-21023.jpg",
imageAlt: "Mohammed Al Zaabi",
},
{
id: "4",
name: "Layla Al Qassimi",
role: "Client Relations Manager",
imageSrc: "http://img.b2bpic.net/free-photo/confident-middle-aged-businesswoman-posing-near-office-building_1262-21023.jpg",
imageAlt: "Layla Al Qassimi",
},
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
tag="Get in Touch"
tagIcon={Mail}
tagAnimation="slide-up"
title="Connect with Our Expert Team"
description="Have questions about our company or services? Our team is always ready to discuss how we can best serve your property management needs."
buttons={[
{ text: "Contact Us", href: "/contact" },
{ text: "View Properties", href: "/properties" },
]}
buttonAnimation="slide-up"
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Navigate",
items: [
{ label: "Home", href: "/" },
{ label: "Properties", href: "/properties" },
{ label: "Services", href: "/services" },
{ label: "About", href: "/about" },
],
},
{
title: "Company",
items: [
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "/contact" },
{ label: "Careers", href: "#" },
{ label: "News", href: "#" },
],
},
{
title: "Resources",
items: [
{ label: "Market Insights", href: "#" },
{ label: "Investment Guide", href: "#" },
{ label: "Blog", href: "#" },
{ label: "FAQ", href: "#" },
],
},
{
title: "Legal",
items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
{ label: "Compliance", href: "#" },
],
},
]}
bottomLeftText="© 2025 Luxe Dubai Properties. All rights reserved."
bottomRightText="Crafted with Excellence"
/>
</div>
</ThemeProvider>
);
}