Update src/app/contact/page.tsx

This commit is contained in:
2026-03-21 03:06:34 +00:00
parent d1ef90644b
commit bf58bcfef8

View File

@@ -10,27 +10,25 @@ import { Phone } from "lucide-react";
export default function ContactPage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
{
title: "Services",
items: [
{ label: "Emergency Plumbing", href: "/" },
{ label: "Leak Repair", href: "/" },
{ label: "Drain Cleaning", href: "/" },
{ label: "Water Heater Service", href: "/" },
{ label: "Pipe Repair", href: "/" },
title: "Services", items: [
{ label: "Emergency Plumbing", href: "/services" },
{ label: "Leak Repair", href: "/services" },
{ label: "Drain Cleaning", href: "/services" },
{ label: "Water Heater Service", href: "/services" },
{ label: "Pipe Repair", href: "/services" },
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Why Choose Us", href: "/about" },
{ label: "Testimonials", href: "/" },
@@ -39,8 +37,7 @@ export default function ContactPage() {
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Phone: (555) 123-4567", href: "tel:+15551234567" },
{ label: "Email: info@plumber.local", href: "mailto:info@plumber.local" },
{ label: "24/7 Emergency", href: "tel:+15551234567" },
@@ -49,8 +46,7 @@ export default function ContactPage() {
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Warranty Info", href: "#" },
@@ -86,26 +82,15 @@ export default function ContactPage() {
ctaTitle="Ready to Solve Your Plumbing Problem?"
ctaDescription="Contact us today for fast, professional plumbing service. Call anytime - we're here 24/7."
ctaButton={{
text: "Call (555) 123-4567",
href: "tel:+15551234567",
}}
text: "Call (555) 123-4567", href: "tel:+15551234567"}}
ctaIcon={Phone}
faqs={[
{
id: "1",
title: "Hours of Operation",
content: "Monday - Friday: 8am - 6pm\nSaturday: 9am - 4pm\nSunday & Holidays: Emergency Service Only\n\nEmergency line available 24/7/365",
},
id: "1", title: "Hours of Operation", content: "Monday - Friday: 8am - 6pm\nSaturday: 9am - 4pm\nSunday & Holidays: Emergency Service Only\n\nEmergency line available 24/7/365"},
{
id: "2",
title: "Service Area",
content: "We proudly serve the following areas:\n- Downtown District\n- Suburban Communities\n- Commercial Centers\n- Industrial Parks\n\nCall to confirm service for your location.",
},
id: "2", title: "Service Area", content: "We proudly serve the following areas:\n- Downtown District\n- Suburban Communities\n- Commercial Centers\n- Industrial Parks\n\nCall to confirm service for your location."},
{
id: "3",
title: "Payment Options",
content: "We accept all major credit cards, checks, and digital payment methods. Flexible financing available for larger projects. Ask about our monthly maintenance plans.",
},
id: "3", title: "Payment Options", content: "We accept all major credit cards, checks, and digital payment methods. Flexible financing available for larger projects. Ask about our monthly maintenance plans."},
]}
animationType="slide-up"
useInvertedBackground={false}
@@ -119,20 +104,11 @@ export default function ContactPage() {
sideDescription="Find answers to frequently asked questions about our plumbing services, pricing, and emergency availability."
faqs={[
{
id: "1",
title: "Do you offer emergency services?",
content: "Yes, we offer 24/7 emergency plumbing services. Call (555) 123-4567 anytime for urgent plumbing needs. Emergency service fees apply outside regular business hours.",
},
id: "1", title: "Do you offer emergency services?", content: "Yes, we offer 24/7 emergency plumbing services. Call (555) 123-4567 anytime for urgent plumbing needs. Emergency service fees apply outside regular business hours."},
{
id: "2",
title: "Are you licensed and insured?",
content: "Yes, all our plumbers are fully licensed, bonded, and insured. We maintain comprehensive insurance coverage to protect your home and our work.",
},
id: "2", title: "Are you licensed and insured?", content: "Yes, all our plumbers are fully licensed, bonded, and insured. We maintain comprehensive insurance coverage to protect your home and our work."},
{
id: "3",
title: "How quickly can you respond?",
content: "We aim to respond to emergency calls within 30-45 minutes in most areas. Response times vary by location. Call us to check availability for your area.",
},
id: "3", title: "How quickly can you respond?", content: "We aim to respond to emergency calls within 30-45 minutes in most areas. Response times vary by location. Call us to check availability for your area."},
]}
faqsAnimation="slide-up"
useInvertedBackground={false}
@@ -150,4 +126,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
}