Update src/app/contact/page.tsx
This commit is contained in:
@@ -3,24 +3,21 @@
|
||||
import Link from "next/link";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||
import { Sparkles, Phone } from "lucide-react";
|
||||
import { Phone, Mail, MapPin } from "lucide-react";
|
||||
|
||||
export default function ContactPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "Properties", id: "properties" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Team", id: "team" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Properties", id: "/properties" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Team", id: "/team" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
const navButton = {
|
||||
text: "Schedule Tour",
|
||||
href: "/contact",
|
||||
};
|
||||
text: "Schedule Tour", href: "/contact"};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
@@ -39,54 +36,17 @@ export default function ContactPage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={navItems}
|
||||
button={navButton}
|
||||
brandName="Luxe Properties"
|
||||
brandName="DreamIntoRealty"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardThree
|
||||
title="Our Comprehensive Services"
|
||||
description="Full-spectrum luxury real estate solutions tailored to your unique needs"
|
||||
tag="Services"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "01",
|
||||
title: "Property Sales & Acquisition",
|
||||
description: "Expert guidance through the entire buying and selling process for luxury properties",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-leaders-consulting-expert_74855-2095.jpg",
|
||||
imageAlt: "Property sales consultation",
|
||||
},
|
||||
{
|
||||
id: "02",
|
||||
title: "Investment Advisory",
|
||||
description: "Strategic real estate investment consultation to maximize your portfolio returns",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/unrecognizable-businessman-pointing-printed-chart-showing-graph-colleagues-professional-content-partners-making-notes-statistics-cooperation-communication-partnership-concept_74855-14267.jpg",
|
||||
imageAlt: "Investment advisory",
|
||||
},
|
||||
{
|
||||
id: "03",
|
||||
title: "Market Analysis & Valuation",
|
||||
description: "Comprehensive property valuation and market trends analysis for informed decisions",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/house-model-compass-plan-background-real-estate-concept_1423-179.jpg",
|
||||
imageAlt: "Market analysis",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<div id="contact-info" data-section="contact-info">
|
||||
<ContactCTA
|
||||
tag="Ready to Get Started?"
|
||||
tag="Get In Touch"
|
||||
tagIcon={Phone}
|
||||
tagAnimation="slide-up"
|
||||
title="Schedule Your Private Consultation"
|
||||
description="Whether you're buying, selling, or investing in luxury properties, our expert team is ready to guide you through every step of the process. Schedule a consultation with one of our specialists today."
|
||||
title="Contact DreamIntoRealty"
|
||||
description="Mukul and Kunal are ready to help you with your real estate needs in Greater Noida and Jewar. Reach out today to discuss your commercial, industrial, or residential property requirements."
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[
|
||||
{ text: "Schedule Consultation", href: "#" },
|
||||
@@ -97,50 +57,74 @@ export default function ContactPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-details" data-section="contact-details" className="py-20">
|
||||
<div className="max-w-6xl mx-auto px-4">
|
||||
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
|
||||
<div className="text-center">
|
||||
<div className="flex justify-center mb-4">
|
||||
<Phone className="w-8 h-8" style={{ color: "var(--primary-cta)" }} />
|
||||
</div>
|
||||
<h3 className="text-xl font-semibold mb-2">Phone</h3>
|
||||
<p className="text-sm" style={{ color: "var(--foreground)" }}>+91 (98765) 43210</p>
|
||||
</div>
|
||||
<div className="text-center">
|
||||
<div className="flex justify-center mb-4">
|
||||
<Mail className="w-8 h-8" style={{ color: "var(--primary-cta)" }} />
|
||||
</div>
|
||||
<h3 className="text-xl font-semibold mb-2">Email</h3>
|
||||
<p className="text-sm" style={{ color: "var(--foreground)" }}>info@dreamintorealty.com</p>
|
||||
</div>
|
||||
<div className="text-center">
|
||||
<div className="flex justify-center mb-4">
|
||||
<MapPin className="w-8 h-8" style={{ color: "var(--primary-cta)" }} />
|
||||
</div>
|
||||
<h3 className="text-xl font-semibold mb-2">Location</h3>
|
||||
<p className="text-sm" style={{ color: "var(--foreground)" }}>Greater Noida & Jewar, UP</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Our Team", href: "/team" },
|
||||
{ label: "Services", href: "#services" },
|
||||
{ label: "Market Insights", href: "#" },
|
||||
{ label: "Services", href: "/contact" },
|
||||
{ label: "Market Insights", href: "/properties" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Properties",
|
||||
items: [
|
||||
{ label: "Featured Listings", href: "/properties" },
|
||||
{ label: "Investment Properties", href: "#" },
|
||||
{ label: "Commercial Real Estate", href: "#" },
|
||||
{ label: "International Properties", href: "#" },
|
||||
title: "Properties", items: [
|
||||
{ label: "Commercial", href: "/properties" },
|
||||
{ label: "Industrial", href: "/properties" },
|
||||
{ label: "Residential", href: "/properties" },
|
||||
{ label: "Greater Noida", href: "/properties" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
{ label: "Buyer's Guide", href: "#" },
|
||||
{ label: "Seller's Guide", href: "#" },
|
||||
{ label: "Market Analysis", href: "#" },
|
||||
{ label: "Blog", href: "#" },
|
||||
title: "Locations", items: [
|
||||
{ label: "Greater Noida", href: "/properties" },
|
||||
{ label: "Jewar", href: "/properties" },
|
||||
{ label: "Investment Zones", href: "/properties" },
|
||||
{ label: "Development Areas", href: "/properties" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{ label: "Schedule Tour", href: "/contact" },
|
||||
{ label: "Email Us", href: "mailto:info@luxeproperties.com" },
|
||||
{ label: "Call: +1 (555) 123-4567", href: "tel:+15551234567" },
|
||||
{ label: "Email Us", href: "mailto:info@dreamintorealty.com" },
|
||||
{ label: "Call: +91 (98765) 43210", href: "tel:+919876543210" },
|
||||
{ label: "Contact Form", href: "/contact" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2025 Luxe Properties. All rights reserved."
|
||||
bottomRightText="Made with Webild"
|
||||
bottomLeftText="© 2025 DreamIntoRealty. All rights reserved."
|
||||
bottomRightText="Mukul & Kunal - Real Estate Experts"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user