Update src/app/page.tsx

This commit is contained in:
2026-03-25 13:47:34 +00:00
parent b1cc83b7c1
commit 9ce509a175

View File

@@ -11,7 +11,6 @@ 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 FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import { Sparkles, Home, Shield, Award, Star, Mail, TrendingUp, DollarSign, Users } from "lucide-react";
export default function LandingPage() {
@@ -30,18 +29,17 @@ export default function LandingPage() {
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
brandName="BlueOak Residential"
brandName="Luxe Properties"
navItems={[
{ name: "Properties", id: "properties" },
{ name: "About", id: "about" },
{ name: "Services", id: "services" },
{ name: "Team", id: "team" },
{ name: "Testimonials", id: "testimonials" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" },
{ name: "Admin Dashboard", id: "/admin" }
{ name: "Apply Now", id: "/application-form" }
]}
button={{ text: "Schedule Viewing", href: "#contact" }}
button={{ text: "Schedule Viewing", href: "contact" }}
/>
</div>
@@ -53,8 +51,8 @@ export default function LandingPage() {
tag="Premium Collections"
tagIcon={Sparkles}
buttons={[
{ text: "Explore Properties", href: "#properties" },
{ text: "Contact Agent", href: "#contact" }
{ text: "Explore Properties", href: "properties" },
{ text: "Contact Agent", href: "contact" }
]}
mediaItems={[
{
@@ -89,7 +87,7 @@ export default function LandingPage() {
gridVariant="uniform-all-items-equal"
carouselMode="buttons"
buttons={[
{ text: "See all properties", href: "#properties" }
{ text: "See all properties", href: "/properties" }
]}
products={[
{
@@ -117,7 +115,7 @@ export default function LandingPage() {
imageAlt="Luxe Properties Dubai team"
useInvertedBackground={false}
buttons={[
{ text: "Learn Our Story", href: "#about" }
{ text: "Learn Our Story", href: "#" }
]}
/>
</div>
@@ -240,26 +238,6 @@ export default function LandingPage() {
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitMedia
title="Frequently Asked Questions"
description="Find quick answers to the most common questions about our services, properties, and the buying process."
tag="Support Center"
imageSrc="https://img.b2bpic.net/free-photo/shanghai-night-china_1127-3170.jpg?_wi=7"
imageAlt="FAQ support team"
mediaPosition="left"
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
faqs={[
{ id: "1", title: "How do I start the property search process?", content: "Begin by scheduling a consultation with one of our expert agents. We'll discuss your preferences, budget, and investment goals to curate a selection of suitable properties." },
{ id: "2", title: "What documentation is required to purchase property in Dubai?", content: "Typically, you'll need your passport, visa (if applicable), and proof of funds. Our legal team will guide you through all necessary paperwork and ensure full compliance." },
{ id: "3", title: "Do you offer property management services?", content: "Yes, we provide comprehensive property management services including rental, maintenance, and tenant relations to ensure a hassle-free ownership experience." },
{ id: "4", title: "Can international buyers acquire property in Dubai?", content: "Absolutely. Dubai's real estate market is open to international investors. We specialize in assisting foreign clients with all aspects of property acquisition, from legalities to financing." }
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
tag="Get In Touch"
@@ -269,7 +247,7 @@ export default function LandingPage() {
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
buttons={[
{ text: "Schedule Consultation", href: "#contact" },
{ text: "Schedule Consultation", href: "#" },
{ text: "Browse Listings", href: "#properties" }
]}
/>
@@ -279,26 +257,20 @@ export default function LandingPage() {
<FooterSimple
columns={[
{
title: "BlueOak Residential", items: [
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Our Services", href: "#services" },
{ label: "Executive Team", href: "#team" },
{ label: "Properties", href: "#properties" },
{ label: "Admin Dashboard", href: "/admin" }
]
},
{
title: "Support", items: [
{ label: "Contact Us", href: "#contact" },
{ label: "Email: support@blueoak.com", href: "mailto:support@blueoak.com" },
{ label: "Call: +1 (740) 907-1850", href: "tel:+17409071850" },
{ label: "WhatsApp: +17409071850", href: "https://wa.me/17409071850" }
{ label: "Contact", href: "#contact" },
{ label: "Apply Now", href: "/application-form" }
]
},
{
title: "Resources", items: [
{ label: "Investment Guide", href: "#" },
{ label: "Market Reports", href: "#" },
{ label: "FAQ", href: "#faq" },
{ label: "FAQ", href: "#" },
{ label: "Blog", href: "#" }
]
},
@@ -308,10 +280,17 @@ export default function LandingPage() {
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" }
]
},
{
title: "Connect", items: [
{ label: "LinkedIn", href: "#" },
{ label: "Instagram", href: "#" },
{ label: "WhatsApp", href: "#" }
]
}
]}
bottomLeftText="© 2025 BlueOak Residential. All rights reserved."
bottomRightText=""
bottomLeftText="© 2025 Luxe Properties Dubai. All rights reserved."
bottomRightText="Luxury Real Estate Excellence"
/>
</div>
</ThemeProvider>