Update src/app/about/page.tsx

This commit is contained in:
2026-03-11 01:15:22 +00:00
parent b6858832cc
commit cbe9df8f3f

View File

@@ -12,10 +12,10 @@ import { Zap, TrendingUp, Phone, Calendar, Users, Award, Lightbulb, Target } fro
export default function AboutPage() {
const navItems = [
{ name: "How It Works", id: "how-it-works" },
{ name: "Pricing", id: "pricing" },
{ name: "Pricing", id: "/pricing" },
{ name: "Features", id: "features" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Contact", id: "/contact" }
];
return (
@@ -45,7 +45,7 @@ export default function AboutPage() {
{ icon: Award, label: "Years of Industry Experience", value: "10+" },
{ icon: Lightbulb, label: "AI Innovations Deployed", value: "50+" },
{ icon: Target, label: "Service Verticals Served", value: "12+" },
{ icon: TrendingUp, label: "Average ROI Improvement", value: "315%" },
{ icon: TrendingUp, label: "Average ROI Improvement", value: "315%" }
]}
metricsAnimation="slide-up"
useInvertedBackground={false}
@@ -58,11 +58,14 @@ export default function AboutPage() {
description="We're committed to transparent, results-driven lead generation that transforms service businesses"
features={[
{
id: "mission-1", title: "Transparency First", description: "Every metric, every lead, every dollar spent is tracked and reported. Our clients know exactly where their investment goes and what it generates.", tag: "Commitment", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/digital-audit-report-or-analytics-dashbo-1772481636177-fcab0e9b.png?_wi=3", imageAlt: "Transparent reporting"},
id: "mission-1", title: "Transparency First", description: "Every metric, every lead, every dollar spent is tracked and reported. Our clients know exactly where their investment goes and what it generates.", tag: "Commitment", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/digital-audit-report-or-analytics-dashbo-1772481636177-fcab0e9b.png?_wi=3", imageAlt: "Transparent reporting"
},
{
id: "mission-2", title: "Results-Driven Innovation", description: "We continuously optimize our AI algorithms and targeting strategies. Your success drives our innovation. Better leads mean better results.", tag: "Innovation", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/abstract-futuristic-ai-technology-visual-1772481632775-04d1d2d8.png?_wi=3", imageAlt: "AI innovation"},
id: "mission-2", title: "Results-Driven Innovation", description: "We continuously optimize our AI algorithms and targeting strategies. Your success drives our innovation. Better leads mean better results.", tag: "Innovation", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/abstract-futuristic-ai-technology-visual-1772481632775-04d1d2d8.png?_wi=3", imageAlt: "AI innovation"
},
{
id: "mission-3", title: "Deep Industry Understanding", description: "Our team has worked in and with HVAC, plumbing, electrical, and service businesses. We understand your challenges, timelines, and what quality leads look like.", tag: "Expertise", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/professional-headshot-of-team-member-wit-1772481632583-cb1f6acd.png?_wi=1", imageAlt: "Industry expertise"},
id: "mission-3", title: "Deep Industry Understanding", description: "Our team has worked in and with HVAC, plumbing, electrical, and service businesses. We understand your challenges, timelines, and what quality leads look like.", tag: "Expertise", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5BwcOCEdbUvGXGzmfDl4faxC/professional-headshot-of-team-member-wit-1772481632583-cb1f6acd.png?_wi=1", imageAlt: "Industry expertise"
}
]}
animationType="slide-up"
textboxLayout="default"
@@ -79,7 +82,7 @@ export default function AboutPage() {
description="Schedule a consultation with our team to discuss your lead generation goals and discover how we can transform your service business."
buttons={[
{ text: "Schedule Consultation", href: "/contact" },
{ text: "Get Free Audit", href: "/contact" },
{ text: "Get Free Audit", href: "/contact" }
]}
buttonAnimation="slide-up"
background={{ variant: "plain" }}
@@ -96,4 +99,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
}