Update src/app/contact/page.tsx

This commit is contained in:
2026-03-11 07:09:03 +00:00
parent 5d0fae6d31
commit efc27f3ab8

View File

@@ -11,24 +11,22 @@ export default function ContactPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Projects", id: "/projects" },
{ name: "About", id: "#about" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
{ name: "WhatsApp", id: "https://wa.me/919840915150" },
];
const footerColumns = [
{
title: "Quick Links",
items: [
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "Projects", href: "/projects" },
{ label: "About Us", href: "#about" },
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Services",
items: [
title: "Services", items: [
{ label: "DTCP Approved Plots", href: "#services" },
{ label: "Residential Development", href: "#services" },
{ label: "Land Investment", href: "#services" },
@@ -36,8 +34,7 @@ export default function ContactPage() {
],
},
{
title: "Contact Info",
items: [
title: "Contact Info", items: [
{ label: "Phone: 098409 15150", href: "tel:098409 15150" },
{ label: "WhatsApp: Message Us", href: "https://wa.me/919840915150" },
{ label: "Kolathur, Chennai", href: "#" },
@@ -45,8 +42,7 @@ export default function ContactPage() {
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms & Conditions", href: "#" },
{ label: "DTCP Compliance", href: "#" },
@@ -83,40 +79,23 @@ export default function ContactPage() {
description="Fill out the form below and our team will contact you within 24 hours with available plot options and site visit schedules that match your requirements."
inputs={[
{
name: "name",
type: "text",
placeholder: "Your Full Name",
required: true,
name: "name", type: "text", placeholder: "Your Full Name", required: true,
},
{
name: "phone",
type: "tel",
placeholder: "Phone Number",
required: true,
name: "phone", type: "tel", placeholder: "Phone Number", required: true,
},
{
name: "email",
type: "email",
placeholder: "Email Address",
required: true,
name: "email", type: "email", placeholder: "Email Address", required: true,
},
{
name: "location",
type: "text",
placeholder: "Preferred Location (e.g., Kolathur, Paper Mills)",
required: true,
name: "location", type: "text", placeholder: "Preferred Location (e.g., Kolathur, Paper Mills)", required: true,
},
{
name: "budget",
type: "text",
placeholder: "Budget Range",
required: false,
name: "budget", type: "text", placeholder: "Budget Range", required: false,
},
]}
textarea={{
name: "message",
placeholder: "Tell us about your requirements and timeline",
rows: 5,
name: "message", placeholder: "Tell us about your requirements and timeline", rows: 5,
required: false,
}}
useInvertedBackground={true}
@@ -138,35 +117,17 @@ export default function ContactPage() {
tag="Help & Support"
faqs={[
{
id: "1",
title: "Are all plots DTCP approved?",
content: "Yes, 100% of our residential and commercial plots are DTCP (Directorate of Town and Country Planning) approved. We provide complete legal documentation and clear title deeds for all properties.",
},
id: "1", title: "Are all plots DTCP approved?", content: "Yes, 100% of our residential and commercial plots are DTCP (Directorate of Town and Country Planning) approved. We provide complete legal documentation and clear title deeds for all properties."},
{
id: "2",
title: "What is the average price range for plots?",
content: "Our plots range from ₹24,000 to ₹50,000 per sq.ft depending on location, size, and amenities. Premium locations like Haridoss Main Road command higher prices while developing areas offer more affordable options.",
},
id: "2", title: "What is the average price range for plots?", content: "Our plots range from ₹24,000 to ₹50,000 per sq.ft depending on location, size, and amenities. Premium locations like Haridoss Main Road command higher prices while developing areas offer more affordable options."},
{
id: "3",
title: "Do you offer financing options?",
content: "Yes, we assist customers with bank liaisons and financing options. We work with leading banks to facilitate home loans and investment credits for eligible buyers.",
},
id: "3", title: "Do you offer financing options?", content: "Yes, we assist customers with bank liaisons and financing options. We work with leading banks to facilitate home loans and investment credits for eligible buyers."},
{
id: "4",
title: "How can NRI investors purchase plots?",
content: "NRI investors can purchase our plots with proper documentation. We handle all NRI-specific requirements including NOC verification and overseas fund transfer facilitation.",
},
id: "4", title: "How can NRI investors purchase plots?", content: "NRI investors can purchase our plots with proper documentation. We handle all NRI-specific requirements including NOC verification and overseas fund transfer facilitation."},
{
id: "5",
title: "What is the typical registration process?",
content: "Our team guides you through the entire registration process. It typically takes 2-3 weeks after payment. We provide all necessary documentation support including property deed registration at the sub-registrar office.",
},
id: "5", title: "What is the typical registration process?", content: "Our team guides you through the entire registration process. It typically takes 2-3 weeks after payment. We provide all necessary documentation support including property deed registration at the sub-registrar office."},
{
id: "6",
title: "Do you provide construction support?",
content: "Yes, we offer professional construction services and contractor recommendations. We can help coordinate your building project from site preparation through completion.",
},
id: "6", title: "Do you provide construction support?", content: "Yes, we offer professional construction services and contractor recommendations. We can help coordinate your building project from site preparation through completion."},
]}
imageSrc="http://img.b2bpic.net/free-photo/multiethnic-customer-support-team-work_482257-121935.jpg"
imageAlt="Our team ready to answer questions"
@@ -187,4 +148,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
}