Update src/app/page.tsx

This commit is contained in:
2026-03-19 12:41:20 +00:00
parent aa2fbec6de
commit ac55c4f285

View File

@@ -32,6 +32,7 @@ export default function LandingPage() {
navItems={[
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Why Choose Us", id: "why-choose" },
{ name: "Testimonials", id: "testimonials" },
{ name: "FAQ", id: "faq" }
]}
@@ -101,11 +102,13 @@ export default function LandingPage() {
<div id="about" data-section="about">
<InlineImageSplitTextAbout
heading={[
{ type: "text", content: "Why ProFlow Plumbing is Your Best Choice" }
{ type: "text", content: "Why ProFlow Plumbing is Your Best Choice" },
{ type: "text", content: "\n\nWith over 15 years of experience serving our community, ProFlow Plumbing has become the trusted choice for residential and commercial plumbing solutions. Our team of certified, licensed, and insured plumbers are dedicated to providing exceptional service with a focus on quality workmanship and customer satisfaction.\n\nWe understand that plumbing issues can be stressful and disruptive to your daily life. That's why we offer 24/7 emergency service, transparent pricing, and upfront consultations so you know exactly what to expect. Whether you need routine maintenance, emergency repairs, or new installations, ProFlow Plumbing is here to help." }
]}
useInvertedBackground={true}
buttons={[
{ text: "Learn More About Us", href: "#" }
{ text: "Learn More About Us", href: "#" },
{ text: "Request Service", href: "#contact" }
]}
/>
</div>
@@ -170,22 +173,28 @@ export default function LandingPage() {
description="Find answers to common plumbing questions and learn more about our services."
faqs={[
{
id: "1", title: "How quickly can you respond to emergencies?", content: "We offer 24/7 emergency plumbing service with rapid response times. Most emergency calls are answered within 30 minutes."
id: "1", title: "How quickly can you respond to emergencies?", content: "We offer 24/7 emergency plumbing service with rapid response times. Most emergency calls are answered within 30 minutes. Our dispatch system prioritizes urgent situations to ensure we reach you as quickly as possible."
},
{
id: "2", title: "Do you provide warranties on your work?", content: "Yes, we stand behind all our work with comprehensive warranties. Details vary by service, so ask us for specifics."
id: "2", title: "Do you provide warranties on your work?", content: "Yes, we stand behind all our work with comprehensive warranties. Details vary by service, so ask us for specifics. We typically provide 1-year warranties on repairs and longer warranties on new installations."
},
{
id: "3", title: "What payment methods do you accept?", content: "We accept cash, credit cards, debit cards, and online payments. Financing options are available for larger projects."
id: "3", title: "What payment methods do you accept?", content: "We accept cash, credit cards, debit cards, and online payments. Financing options are available for larger projects. We work with trusted financing partners to help make your plumbing investment more affordable."
},
{
id: "4", title: "Are you licensed and insured?", content: "Absolutely. We are fully licensed, insured, and bonded to protect you and your property."
id: "4", title: "Are you licensed and insured?", content: "Absolutely. We are fully licensed, insured, and bonded to protect you and your property. All our technicians carry valid licenses and maintain current certifications in plumbing practices."
},
{
id: "5", title: "Do you offer maintenance plans?", content: "Yes! Our maintenance plans help prevent costly repairs and keep your plumbing system running smoothly year-round."
id: "5", title: "Do you offer maintenance plans?", content: "Yes! Our maintenance plans help prevent costly repairs and keep your plumbing system running smoothly year-round. Plans include regular inspections, drain cleaning, and priority service for repairs."
},
{
id: "6", title: "How do I schedule a service appointment?", content: "Call us at 555-0100, use our contact form, or text for quick scheduling. We'll find a time that works for you."
id: "6", title: "How do I schedule a service appointment?", content: "Call us at 555-0100, use our contact form, or text for quick scheduling. We'll find a time that works for you. Most appointments can be scheduled within 24 hours, with same-day emergency service available."
},
{
id: "7", title: "Do you provide free estimates?", content: "Yes, we provide free consultations and estimates for most services. We'll assess your situation and give you an honest quote before starting any work, so there are no surprises."
},
{
id: "8", title: "What areas do you serve?", content: "We serve the greater metro area including residential and commercial properties. Our service area includes both urban and suburban locations. Contact us to confirm we service your specific address."
}
]}
mediaAnimation="opacity"
@@ -202,7 +211,7 @@ export default function LandingPage() {
tag="Get Started"
tagIcon={Phone}
title="Ready to Fix Your Plumbing?"
description="Contact ProFlow Plumbing today for fast, reliable, and professional service. Available 24/7 for all your plumbing needs."
description="Contact ProFlow Plumbing today for fast, reliable, and professional service. Available 24/7 for all your plumbing needs. We respond quickly to emergencies and provide free estimates for new projects."
buttons={[
{ text: "Call Now: 555-0100", href: "tel:555-0100" },
{ text: "Request Quote Online", href: "#" }
@@ -221,30 +230,33 @@ export default function LandingPage() {
{ label: "Leak Repair", href: "#services" },
{ label: "Drain Cleaning", href: "#services" },
{ label: "Water Heater", href: "#services" },
{ label: "Emergency", href: "#services" }
{ label: "Emergency Service", href: "#services" },
{ label: "General Repairs", href: "#services" },
{ label: "New Installation", href: "#services" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Contact", href: "#contact" },
{ label: "Why Choose Us", href: "#why-choose" },
{ label: "Testimonials", href: "#testimonials" },
{ label: "FAQ", href: "#faq" }
{ label: "FAQ", href: "#faq" },
{ label: "Contact", href: "#contact" }
]
},
{
title: "Contact", items: [
title: "Contact Info", items: [
{ label: "Phone: 555-0100", href: "tel:555-0100" },
{ label: "Email: info@proflow.com", href: "mailto:info@proflow.com" },
{ label: "Emergency: 24/7", href: "#" },
{ label: "Service Area", href: "#" }
{ label: "Emergency: Available 24/7", href: "#" },
{ label: "Response Time: 30 minutes", href: "#" }
]
}
]}
bottomLeftText="© 2024 ProFlow Plumbing. All rights reserved."
bottomRightText="Licensed • Insured • Trusted"
bottomRightText="Licensed • Insured • Trusted • 24/7 Available"
/>
</div>
</ThemeProvider>
);
}
}