Update src/app/faq/page.tsx

This commit is contained in:
2026-03-26 09:30:43 +00:00
parent ad54af63fb
commit fc0a54d2d0

View File

@@ -27,31 +27,17 @@ export default function LandingPage() {
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Services",
id: "services",
id: "/services",
},
name: "Services", id: "/services"},
{
name: "About Us",
id: "about",
id: "/about",
},
name: "About Us", id: "/about"},
{
name: "Contact",
id: "contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
brandName="Local Service Pro"
button={{
text: "Call Now",
href: "tel:+18001234567",
}}
text: "Call Now", href: "tel:+18001234567"}}
animateOnLoad={true}
/>
</div>
@@ -62,30 +48,15 @@ export default function LandingPage() {
useInvertedBackground={false}
faqs={[
{
id: "1",
title: "What types of services do you offer?",
content: "We offer a comprehensive range of home services including electrical repairs, plumbing solutions, HVAC maintenance and installation, and emergency repair services for all these categories.",
},
id: "1", title: "What types of services do you offer?", content: "We offer a comprehensive range of home services including electrical repairs, plumbing solutions, HVAC maintenance and installation, and emergency repair services for all these categories."},
{
id: "2",
title: "Are your technicians certified?",
content: "Absolutely. All our technicians are fully certified, licensed, and undergo continuous training to stay updated with the latest industry standards and technologies.",
},
id: "2", title: "Are your technicians certified?", content: "Absolutely. All our technicians are fully certified, licensed, and undergo continuous training to stay updated with the latest industry standards and technologies."},
{
id: "3",
title: "How quickly can you respond to an emergency?",
content: "For emergency calls, we aim to dispatch a technician to your location within 60-90 minutes, depending on your proximity and current demand. Our lines are open 24/7.",
},
id: "3", title: "How quickly can you respond to an emergency?", content: "For emergency calls, we aim to dispatch a technician to your location within 60-90 minutes, depending on your proximity and current demand. Our lines are open 24/7."},
{
id: "4",
title: "Do you offer free estimates?",
content: "Yes, we provide free, no-obligation estimates for most of our services. Contact us to schedule an appointment, and we'll assess your needs.",
},
id: "4", title: "Do you offer free estimates?", content: "Yes, we provide free, no-obligation estimates for most of our services. Contact us to schedule an appointment, and we'll assess your needs."},
{
id: "5",
title: "What payment methods do you accept?",
content: "We accept all major credit cards, debit cards, bank transfers, and sometimes offer flexible financing options. Details can be discussed during your service consultation.",
},
id: "5", title: "What payment methods do you accept?", content: "We accept all major credit cards, debit cards, bank transfers, and sometimes offer flexible financing options. Details can be discussed during your service consultation."},
]}
title="Frequently Asked Questions"
description="Find quick answers to common questions about our services, scheduling, and payment options."
@@ -102,9 +73,7 @@ export default function LandingPage() {
ctaTitle="Still Have Questions?"
ctaDescription="If you can't find the answer you're looking for, our friendly support team is here to help!"
ctaButton={{
text: "Contact Support",
href: "/contact",
}}
text: "Contact Support", href: "/contact"}}
ctaIcon={MessageCircle}
faqs={[]}
/>
@@ -114,54 +83,33 @@ export default function LandingPage() {
<FooterBase
columns={[
{
title: "Services",
items: [
title: "Services", items: [
{
label: "Electrical",
href: "/services#electrical",
},
label: "Electrical", href: "/services#electrical"},
{
label: "Plumbing",
href: "/services#plumbing",
},
label: "Plumbing", href: "/services#plumbing"},
{
label: "HVAC",
href: "/services#hvac",
},
label: "HVAC", href: "/services#hvac"},
{
label: "Emergency Repair",
href: "/services#emergency",
},
label: "Emergency Repair", href: "/services#emergency"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
{
label: "FAQ",
href: "/faq",
},
label: "FAQ", href: "/faq"},
],
},
{
title: "Resources",
items: [
title: "Resources", items: [
{
label: "Blog",
href: "#",
},
label: "Blog", href: "#"},
{
label: "Support",
href: "/contact",
},
label: "Support", href: "/contact"},
],
},
]}