Switch to version 2: modified src/app/about/page.tsx

This commit is contained in:
2026-06-11 11:18:34 +00:00
parent 9dd50d1d01
commit 36fd749784

View File

@@ -27,22 +27,35 @@ export default function LandingPage() {
<NavbarStyleApple <NavbarStyleApple
navItems={[ 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" brandName="GC Roofing"
logoClassName="text-2xl font-bold text-primary-cta"
/> />
</div> </div>
@@ -54,11 +67,29 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
members={[ members={[
{ {
id: "team-1", name: "Gerard Collins", role: "Founder & Lead Roofer", description: "With over 20 years experience, Gerard personally oversees every project, ensuring the highest standards of quality.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-wearing-helmet_23-2149343696.jpg", imageAlt: "Gerard Collins, Founder of GC Roofing"}, id: "team-1",
name: "Gerard Collins",
role: "Founder & Lead Roofer",
description: "With over 20 years experience, Gerard personally oversees every project, ensuring the highest standards of quality.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-wearing-helmet_23-2149343696.jpg",
imageAlt: "Gerard Collins, Founder of GC Roofing",
},
{ {
id: "team-2", name: "Mark Davison", role: "Certified Roofing Technician", description: "Mark is a meticulous craftsman, specializing in complex installations and ensuring every detail is perfect.", imageSrc: "http://img.b2bpic.net/free-photo/worker-cuts-steel-profiles-drywall-close-up-selective-focus-preparing-installation-ceiling-profile-system-frame-renovation-repair_166373-1903.jpg", imageAlt: "Mark Davison, Roofing Technician"}, id: "team-2",
name: "Mark Davison",
role: "Certified Roofing Technician",
description: "Mark is a meticulous craftsman, specializing in complex installations and ensuring every detail is perfect.",
imageSrc: "http://img.b2bpic.net/free-photo/worker-cuts-steel-profiles-drywall-close-up-selective-focus-preparing-installation-ceiling-profile-system-frame-renovation-repair_166373-1903.jpg",
imageAlt: "Mark Davison, Roofing Technician",
},
{ {
id: "team-3", name: "Sarah Walsh", role: "Client Relations Manager", description: "Sarah ensures clear communication and photographic updates, keeping clients informed and satisfied.", imageSrc: "http://img.b2bpic.net/free-photo/two-engineers-designers-working-construction-project_273609-16395.jpg", imageAlt: "Sarah Walsh, Client Relations Manager"}, id: "team-3",
name: "Sarah Walsh",
role: "Client Relations Manager",
description: "Sarah ensures clear communication and photographic updates, keeping clients informed and satisfied.",
imageSrc: "http://img.b2bpic.net/free-photo/two-engineers-designers-working-construction-project_273609-16395.jpg",
imageAlt: "Sarah Walsh, Client Relations Manager",
},
]} ]}
title="Meet the GC Roofing Team" title="Meet the GC Roofing Team"
description="Led by Gerard Collins, our team is dedicated to reliability, transparency, and craftsmanship, ensuring your peace of mind." description="Led by Gerard Collins, our team is dedicated to reliability, transparency, and craftsmanship, ensuring your peace of mind."
@@ -72,16 +103,24 @@ export default function LandingPage() {
metrics={[ metrics={[
{ {
icon: ShieldCheck, icon: ShieldCheck,
label: "Workmanship", value: "10-Year Guarantee"}, label: "Workmanship",
value: "10-Year Guarantee",
},
{ {
icon: Award, icon: Award,
label: "Public & Employer's", value: "Fully Insured"}, label: "Public & Employer's",
value: "Fully Insured",
},
{ {
icon: ListChecks, icon: ListChecks,
label: "Safety Training", value: "Certified Team"}, label: "Safety Training",
value: "Certified Team",
},
{ {
icon: Trash2, icon: Trash2,
label: "Waste Management", value: "Licensed Carrier"}, label: "Waste Management",
value: "Licensed Carrier",
},
]} ]}
metricsAnimation="slide-up" metricsAnimation="slide-up"
/> />
@@ -92,41 +131,70 @@ export default function LandingPage() {
logoText="GC Roofing" logoText="GC Roofing"
columns={[ 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: "#",
},
], ],
}, },
]} ]}