Update src/app/contact/page.tsx

This commit is contained in:
2026-03-03 09:36:25 +00:00
parent f4e2b2dc50
commit c6fdedbf61

View File

@@ -3,7 +3,6 @@
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import MediaAbout from "@/components/sections/about/MediaAbout";
import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterSimple from "@/components/sections/footer/FooterSimple";
@@ -13,29 +12,25 @@ export default function ContactPage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "Properties", id: "properties" },
{ name: "About", id: "about" },
{ name: "Services", id: "services" },
{ name: "Team", id: "team" },
{ name: "Contact", id: "contact" },
];
const navButton = {
text: "Schedule Viewing",
href: "/contact",
};
text: "Schedule Viewing", href: "/contact"};
const footerColumns = [
{
title: "Navigation",
items: [
title: "Navigation", items: [
{ label: "Home", href: "/" },
{ label: "Properties", href: "/properties" },
{ label: "About Us", href: "/about" },
{ label: "Team", href: "/team" },
{ label: "Services", href: "/" },
{ label: "Team", href: "/" },
],
},
{
title: "Services",
items: [
title: "Services", items: [
{ label: "Buy Properties", href: "/" },
{ label: "Sell Property", href: "/" },
{ label: "Investment Analysis", href: "/" },
@@ -43,17 +38,15 @@ export default function ContactPage() {
],
},
{
title: "Company",
items: [
{ label: "About Luxe", href: "/about" },
{ label: "Our Team", href: "/team" },
title: "Company", items: [
{ label: "About Luxe", href: "/" },
{ label: "Our Team", href: "/" },
{ label: "Careers", href: "/" },
{ label: "News", href: "/" },
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "/" },
{ label: "Terms of Service", href: "/" },
{ label: "Disclaimers", href: "/" },
@@ -83,22 +76,6 @@ export default function ContactPage() {
/>
</div>
<div id="contact-hero" data-section="contact-hero">
<MediaAbout
title="Get in Touch with Our Team"
description="We're committed to understanding your unique needs and providing personalized guidance on every aspect of your real estate journey. Reach out today to schedule a confidential consultation or request detailed information about our services and properties."
tag="Contact Information"
tagIcon={Mail}
imageSrc="http://img.b2bpic.net/free-photo/lifestyle-people-office_23-2149173721.jpg?_wi=3"
imageAlt="Luxe Properties contact team"
buttons={[
{ text: "Schedule Call", href: "/contact" },
{ text: "View Properties", href: "/properties" },
]}
useInvertedBackground={false}
/>
</div>
<div id="contact-methods" data-section="contact-methods">
<FeatureCardThree
title="How to Connect"
@@ -107,32 +84,17 @@ export default function ContactPage() {
tagIcon={Star}
features={[
{
id: "01",
title: "Phone Consultation",
description:
"Speak directly with our specialists to discuss properties, investment strategies, and real estate objectives.",
imageSrc:
"http://img.b2bpic.net/free-photo/closeup-waitress-serving-dessert-guest-cafe_637285-8889.jpg?_wi=3",
imageAlt: "Phone consultation service",
},
id: "01", title: "Phone Consultation", description:
"Speak directly with our specialists to discuss properties, investment strategies, and real estate objectives.", imageSrc:
"http://img.b2bpic.net/free-photo/closeup-waitress-serving-dessert-guest-cafe_637285-8889.jpg?_wi=3", imageAlt: "Phone consultation service"},
{
id: "02",
title: "Email Inquiry",
description:
"Send detailed information about your interests and receive thoughtful, comprehensive responses from our team.",
imageSrc:
"http://img.b2bpic.net/free-photo/graph-growth-development-improvement-profit-success-concept_53876-133598.jpg?_wi=3",
imageAlt: "Email communication",
},
id: "02", title: "Email Inquiry", description:
"Send detailed information about your interests and receive thoughtful, comprehensive responses from our team.", imageSrc:
"http://img.b2bpic.net/free-photo/graph-growth-development-improvement-profit-success-concept_53876-133598.jpg?_wi=3", imageAlt: "Email communication"},
{
id: "03",
title: "Private Office Meeting",
description:
"Visit our headquarters to meet with specialists in person and explore properties in detail with portfolio review.",
imageSrc:
"http://img.b2bpic.net/free-photo/blond-man-with-virtual-glasses-surprised-expression_1194-2848.jpg?_wi=2",
imageAlt: "Office meeting space",
},
id: "03", title: "Private Office Meeting", description:
"Visit our headquarters to meet with specialists in person and explore properties in detail with portfolio review.", imageSrc:
"http://img.b2bpic.net/free-photo/blond-man-with-virtual-glasses-surprised-expression_1194-2848.jpg?_wi=2", imageAlt: "Office meeting space"},
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
@@ -159,10 +121,10 @@ export default function ContactPage() {
<div id="footer" data-section="footer">
<FooterSimple
columns={footerColumns}
bottomLeftText="© 2025 Luxe Properties. All rights reserved."
bottomRightText="Luxury Real Estate Excellence"
bottomLeftText="© 2025 Premet s.r.o. All rights reserved."
bottomRightText="Design by David Pavlík"
/>
</div>
</ThemeProvider>
);
}
}