Update src/app/faq/page.tsx

This commit is contained in:
2026-06-11 11:11:05 +00:00
parent 414ab25998
commit d43e154700

View File

@@ -26,33 +26,19 @@ export default function LandingPage() {
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Services",
id: "/services",
},
name: "Services", id: "/services"},
{
name: "Projects",
id: "/projects",
},
name: "Projects", id: "/projects"},
{
name: "Reviews",
id: "/reviews",
},
name: "Reviews", id: "/reviews"},
{
name: "About",
id: "/about",
},
name: "About", id: "/about"},
{
name: "FAQs",
id: "/faq",
},
name: "FAQs", id: "/faq"},
{
name: "Get a Quote",
id: "/contact",
},
name: "Get a Quote", id: "/contact"},
]}
brandName="GC Roofing"
/>
@@ -64,35 +50,17 @@ export default function LandingPage() {
useInvertedBackground={false}
faqs={[
{
id: "faq-g1",
title: "Do you provide written, itemized quotes?",
content: "Yes, every quote we provide is fully itemized, and we take the time to explain all options in plain English, ensuring complete transparency and no hidden costs.",
},
id: "faq-g1", title: "Do you provide written, itemized quotes?", content: "Yes, every quote we provide is fully itemized, and we take the time to explain all options in plain English, ensuring complete transparency and no hidden costs."},
{
id: "faq-g2",
title: "Do you share photos of the work in progress?",
content: "Absolutely. We provide regular photographic updates throughout the job, so you can see the progress and any hidden details, giving you peace of mind.",
},
id: "faq-g2", title: "Do you share photos of the work in progress?", content: "Absolutely. We provide regular photographic updates throughout the job, so you can see the progress and any hidden details, giving you peace of mind."},
{
id: "faq-g3",
title: "How fast can you attend storm damage?",
content: "For storm damage, we prioritize rapid response and aim for same or next-day attendance where possible. Our immediate focus is to make your roof safe and watertight.",
},
id: "faq-g3", title: "How fast can you attend storm damage?", content: "For storm damage, we prioritize rapid response and aim for same or next-day attendance where possible. Our immediate focus is to make your roof safe and watertight."},
{
id: "faq-g4",
title: "What guarantees do you provide on your work?",
content: "We offer a 10-year workmanship guarantee on all full roof replacements. Materials used are covered by their respective manufacturer warranties, ensuring long-term reliability.",
},
id: "faq-g4", title: "What guarantees do you provide on your work?", content: "We offer a 10-year workmanship guarantee on all full roof replacements. Materials used are covered by their respective manufacturer warranties, ensuring long-term reliability."},
{
id: "faq-g5",
title: "Are you fully insured?",
content: "Yes, GC Roofing is fully insured for both public and employers liability, providing complete peace of mind for both our clients and our team.",
},
id: "faq-g5", title: "Are you fully insured?", content: "Yes, GC Roofing is fully insured for both public and employers liability, providing complete peace of mind for both our clients and our team."},
{
id: "faq-g6",
title: "Will you keep the site tidy during and after work?",
content: "Maintaining a clean and tidy site is a core value for us. We protect your driveways and gardens, manage skip placement efficiently, and ensure everything is spotless upon completion.",
},
id: "faq-g6", title: "Will you keep the site tidy during and after work?", content: "Maintaining a clean and tidy site is a core value for us. We protect your driveways and gardens, manage skip placement efficiently, and ensure everything is spotless upon completion."},
]}
title="Frequently Asked Questions"
description="Find answers to common inquiries about our roofing services, process, and guarantees."
@@ -104,18 +72,13 @@ export default function LandingPage() {
<ContactText
useInvertedBackground={true}
background={{
variant: "plain",
}}
variant: "plain"}}
text="Still have questions? Our friendly team is ready to help you."
buttons={[
{
text: "Get a Quote",
href: "/contact",
},
text: "Get a Quote", href: "/contact"},
{
text: "Call 07xxx xxxxxx",
href: "tel:07xxxxxxxx",
},
text: "Call 07927282276", href: "tel:07927282276"},
]}
/>
</div>
@@ -125,70 +88,41 @@ export default function LandingPage() {
logoText="GC Roofing"
columns={[
{
title: "Services",
items: [
title: "Services", items: [
{
label: "New Slates & Tiled Roofs",
href: "/services#slate-tile",
},
label: "New Slates & Tiled Roofs", href: "/services#slate-tile"},
{
label: "Flat Roof Replacement",
href: "/services#flat-roof",
},
label: "Flat Roof Replacement", href: "/services#flat-roof"},
{
label: "Chimney Removal/Rebuild",
href: "/services#chimney",
},
label: "Chimney Removal/Rebuild", href: "/services#chimney"},
{
label: "Fascia, Soffits & Guttering",
href: "/services#fascia-gutter",
},
label: "Fascia, Soffits & Guttering", href: "/services#fascia-gutter"},
{
label: "Storm Damage & Emergency",
href: "/services#storm-damage",
},
label: "Storm Damage & Emergency", href: "/services#storm-damage"},
{
label: "Skylights & Ventilation",
href: "/services#skylights",
},
label: "Skylights & Ventilation", href: "/services#skylights"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Projects",
href: "/projects",
},
label: "Projects", href: "/projects"},
{
label: "Reviews",
href: "/reviews",
},
label: "Reviews", href: "/reviews"},
{
label: "FAQs",
href: "/faq",
},
label: "FAQs", href: "/faq"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
],
},
]}