Update src/app/about/page.tsx

This commit is contained in:
2026-03-16 01:40:30 +00:00
parent 551d35408a
commit 45876d01fb

View File

@@ -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"}}
/>
</div>
@@ -80,15 +75,11 @@ export default function AboutPage() {
<InlineImageSplitTextAbout
heading={[
{
type: "text",
content: "About BrandLift: Empowering Businesses Online\n\nBrandLift was founded with a simple mission: to help small and medium-sized businesses succeed online. We believe that every business deserves a professional, modern web presence—regardless of size or budget.\n\nOur team combines years of web design, digital marketing, and business development expertise to deliver solutions that truly work.",
},
type: "text", content: "About BrandLift: Empowering Businesses Online\n\nBrandLift was founded with a simple mission: to help small and medium-sized businesses succeed online. We believe that every business deserves a professional, modern web presence—regardless of size or budget.\n\nOur team combines years of web design, digital marketing, and business development expertise to deliver solutions that truly work."},
]}
buttons={[
{
text: "Learn Our Process",
href: "/",
},
text: "Learn Our Process", href: "#process"},
]}
useInvertedBackground={false}
/>
@@ -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"},
]}
/>
</div>
@@ -190,4 +145,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
}