Update src/app/contact/page.tsx

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

View File

@@ -27,33 +27,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"
/>
@@ -63,22 +49,15 @@ export default function LandingPage() {
<ContactText
useInvertedBackground={false}
background={{
variant: "plain",
}}
variant: "plain"}}
text="Get Your Free, Itemized Quote Today"
buttons={[
{
text: "Call Now 07xxx xxxxxx",
href: "tel:07xxxxxxxx",
},
text: "Call Now 07927282276", href: "tel:07927282276"},
{
text: "WhatsApp Us",
href: "https://wa.me/447xxxxxxxx",
},
text: "WhatsApp Us", href: "https://wa.me/447927282276"},
{
text: "Email Us",
href: "mailto:quotes@gcroofing.co.uk",
},
text: "Email Us", href: "mailto:quotes@gcroofing.co.uk"},
]}
/>
</div>
@@ -90,19 +69,13 @@ export default function LandingPage() {
metrics={[
{
icon: Clock,
label: "Fast Response",
value: "Emergency Support",
},
label: "Fast Response", value: "Emergency Support"},
{
icon: Camera,
label: "Stay Informed",
value: "Photographic Updates",
},
label: "Stay Informed", value: "Photographic Updates"},
{
icon: Wallet,
label: "Transparent Pricing",
value: "No Hidden Costs",
},
label: "Transparent Pricing", value: "No Hidden Costs"},
]}
metricsAnimation="slide-up"
/>
@@ -113,70 +86,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: "#"},
],
},
]}
@@ -186,4 +130,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}