Update src/app/about/page.tsx

This commit is contained in:
2026-03-04 21:45:13 +00:00
parent 661c9a3d9d
commit 380bd1993c

View File

@@ -36,8 +36,8 @@ export default function AboutPage() {
<NavbarStyleFullscreen
navItems={navItems}
brandName="Ludlow Plumbing"
bottomLeftText="Ludlow, UK"
bottomRightText="24/7 Emergency: Available"
bottomLeftText="Rome, NY 13442"
bottomRightText="Emergency: (680) 867-2218"
/>
</div>
@@ -63,22 +63,13 @@ export default function AboutPage() {
description="Two decades of trusted service to Ludlow community"
metrics={[
{
id: "1",
value: "20+",
title: "Years Operating in Ludlow",
items: ["Since 2003", "Continuous growth", "Expanding expertise"],
id: "1", value: "20+", title: "Years Operating in Ludlow", items: ["Since 2003", "Continuous growth", "Expanding expertise"],
},
{
id: "2",
value: "500+",
title: "Satisfied Customers",
items: ["Residential clients", "Commercial partnerships", "Repeat business"],
id: "2", value: "500+", title: "Satisfied Customers", items: ["Residential clients", "Commercial partnerships", "Repeat business"],
},
{
id: "3",
value: "50+",
title: "Skilled Technicians",
items: ["Gas Safe certified", "Fully trained", "Local employment"],
id: "3", value: "50+", title: "Skilled Technicians", items: ["Gas Safe certified", "Fully trained", "Local employment"],
},
]}
animationType="slide-up"
@@ -99,53 +90,17 @@ export default function AboutPage() {
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "Sarah Mitchell",
handle: "Homeowner, Ludlow",
testimonial: "Ludlow Plumbing arrived within 30 minutes for our emergency leak. Professional, efficient, and reasonably priced. Highly recommend!",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=7",
imageAlt: "Sarah Mitchell",
},
id: "1", name: "Sarah Mitchell", handle: "Homeowner, Ludlow", testimonial: "Ludlow Plumbing arrived within 30 minutes for our emergency leak. Professional, efficient, and reasonably priced. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=7", imageAlt: "Sarah Mitchell"},
{
id: "2",
name: "David Chen",
handle: "Business Owner, Ludlow",
testimonial: "We've used them for our restaurant for three years. Reliable, trustworthy, and always go the extra mile. Great local business!",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=8",
imageAlt: "David Chen",
},
id: "2", name: "David Chen", handle: "Business Owner, Ludlow", testimonial: "We've used them for our restaurant for three years. Reliable, trustworthy, and always go the extra mile. Great local business!", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=8", imageAlt: "David Chen"},
{
id: "3",
name: "Emma Roberts",
handle: "Property Manager, Ludlow",
testimonial: "Fantastic bathroom renovation work. They completed the project on time and on budget. Excellent craftsmanship and attention to detail.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=9",
imageAlt: "Emma Roberts",
},
id: "3", name: "Emma Roberts", handle: "Property Manager, Ludlow", testimonial: "Fantastic bathroom renovation work. They completed the project on time and on budget. Excellent craftsmanship and attention to detail.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=9", imageAlt: "Emma Roberts"},
{
id: "4",
name: "Michael Thompson",
handle: "Homeowner, Ludlow",
testimonial: "Called for an emergency boiler repair on a Sunday. They came out immediately and fixed it perfectly. Outstanding service!",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=10",
imageAlt: "Michael Thompson",
},
id: "4", name: "Michael Thompson", handle: "Homeowner, Ludlow", testimonial: "Called for an emergency boiler repair on a Sunday. They came out immediately and fixed it perfectly. Outstanding service!", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=10", imageAlt: "Michael Thompson"},
{
id: "5",
name: "Catherine Walsh",
handle: "Office Manager, Ludlow",
testimonial: "Professional team who completed our office plumbing upgrade with minimal disruption. Very impressed with their work ethic.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=11",
imageAlt: "Catherine Walsh",
},
id: "5", name: "Catherine Walsh", handle: "Office Manager, Ludlow", testimonial: "Professional team who completed our office plumbing upgrade with minimal disruption. Very impressed with their work ethic.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=11", imageAlt: "Catherine Walsh"},
{
id: "6",
name: "James Patterson",
handle: "Property Owner, Ludlow",
testimonial: "Best plumbers in Ludlow. They've done multiple jobs for us - always reliable, professional, and fairly priced. Wouldn't use anyone else!",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=12",
imageAlt: "James Patterson",
},
id: "6", name: "James Patterson", handle: "Property Owner, Ludlow", testimonial: "Best plumbers in Ludlow. They've done multiple jobs for us - always reliable, professional, and fairly priced. Wouldn't use anyone else!", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=12", imageAlt: "James Patterson"},
]}
speed={40}
/>
@@ -161,4 +116,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
}