From 45876d01fb1104cd4cfd4062ec51c3d2a2025571 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 01:40:30 +0000 Subject: [PATCH] Update src/app/about/page.tsx --- src/app/about/page.tsx | 103 ++++++++++++----------------------------- 1 file changed, 29 insertions(+), 74 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 4050622..1819427 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -15,36 +15,33 @@ import { export default function AboutPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "Services", id: "services" }, + { name: "Home", id: "/" }, + { name: "Services", id: "/services" }, { name: "Why Us", id: "why-us" }, { name: "Pricing", id: "pricing" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ { - title: "Product", - items: [ - { label: "Website Design", href: "/" }, - { label: "SEO Optimization", href: "/" }, - { label: "Digital Advertising", href: "/" }, - { label: "Pricing", href: "/" }, + title: "Product", items: [ + { label: "Website Design", href: "/services" }, + { label: "SEO Optimization", href: "/services" }, + { label: "Digital Advertising", href: "/services" }, + { label: "Pricing", href: "#pricing" }, ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, - { label: "Our Process", href: "/" }, - { label: "Testimonials", href: "/" }, + { label: "Our Process", href: "#process" }, + { label: "Testimonials", href: "#testimonials" }, { label: "Contact", href: "/contact" }, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Cookie Policy", href: "#" }, @@ -70,9 +67,7 @@ export default function AboutPage() { brandName="BrandLift" navItems={navItems} button={{ - text: "Schedule Meeting", - href: "/contact", - }} + text: "Schedule Meeting", href: "/contact"}} /> @@ -80,15 +75,11 @@ export default function AboutPage() { @@ -100,25 +91,13 @@ export default function AboutPage() { description="These principles guide everything we do at BrandLift." metrics={[ { - id: "1", - value: "Speed", - title: "Fast Delivery", - description: "We respect your time. Most sites launch within 48 hours.", - icon: Zap, + id: "1", value: "Speed", title: "Fast Delivery", description: "We respect your time. Most sites launch within 48 hours.", icon: Zap, }, { - id: "2", - value: "Value", - title: "Affordable Pricing", - description: "Premium quality doesn't require premium pricing. Our plans work for businesses of all sizes.", - icon: DollarSign, + id: "2", value: "Value", title: "Affordable Pricing", description: "Premium quality doesn't require premium pricing. Our plans work for businesses of all sizes.", icon: DollarSign, }, { - id: "3", - value: "Excellence", - title: "Premium Quality", - description: "Every site we build reflects our commitment to excellence and professional design.", - icon: Sparkles, + id: "3", value: "Excellence", title: "Premium Quality", description: "Every site we build reflects our commitment to excellence and professional design.", icon: Sparkles, }, ]} gridVariant="uniform-all-items-equal" @@ -137,46 +116,22 @@ export default function AboutPage() { animationType="slide-up" testimonials={[ { - id: "1", - name: "Sarah Johnson", - role: "Owner", - company: "Local Fitness Studio", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg?_wi=2", - imageAlt: "Sarah Johnson", - }, + id: "1", name: "Sarah Johnson", role: "Owner", company: "Local Fitness Studio", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg?_wi=2", imageAlt: "Sarah Johnson"}, { - id: "2", - name: "Michael Chen", - role: "CEO", - company: "Digital Marketing Agency", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/female-employee-black-suit-looks-positive_114579-21797.jpg?_wi=2", - imageAlt: "Michael Chen", - }, + id: "2", name: "Michael Chen", role: "CEO", company: "Digital Marketing Agency", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/female-employee-black-suit-looks-positive_114579-21797.jpg?_wi=2", imageAlt: "Michael Chen"}, { - id: "3", - name: "Emily Rodriguez", - role: "Founder", - company: "E-commerce Business", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-black-suit_23-2148401442.jpg?_wi=2", - imageAlt: "Emily Rodriguez", - }, + id: "3", name: "Emily Rodriguez", role: "Founder", company: "E-commerce Business", rating: 5, + imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-black-suit_23-2148401442.jpg?_wi=2", imageAlt: "Emily Rodriguez"}, ]} kpiItems={[ { - value: "500+", - label: "Sites Launched", - }, + value: "500+", label: "Sites Launched"}, { - value: "48hrs", - label: "Average Launch", - }, + value: "48hrs", label: "Average Launch"}, { - value: "95%", - label: "Client Satisfaction", - }, + value: "95%", label: "Client Satisfaction"}, ]} /> @@ -190,4 +145,4 @@ export default function AboutPage() { ); -} \ No newline at end of file +}