Update src/app/about/page.tsx

This commit is contained in:
2026-03-03 20:45:22 +00:00
parent e4ad7baf27
commit d2d3ca4da6

View File

@@ -7,6 +7,7 @@ import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwe
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
import FooterCard from "@/components/sections/footer/FooterCard";
import { Users, Lightbulb, Heart, Facebook, Linkedin, Twitter } from "lucide-react";
import Link from "next/link";
export default function AboutPage() {
return (
@@ -26,8 +27,8 @@ export default function AboutPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "home" },
{ name: "About", id: "about" },
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "services" },
{ name: "Portfolio", id: "portfolio" },
{ name: "Pricing", id: "pricing" },
@@ -75,11 +76,14 @@ export default function AboutPage() {
animationType="slide-up"
features={[
{
id: "1", title: "Client Success", description: "Your success is our success. We're invested in helping your business grow and thrive online.", imageSrc: "http://img.b2bpic.net/free-vector/responsive-web-design_23-2147546970.jpg", imageAlt: "Client success value"},
id: "1", title: "Client Success", description: "Your success is our success. We're invested in helping your business grow and thrive online.", imageSrc: "http://img.b2bpic.net/free-vector/responsive-web-design_23-2147546970.jpg", imageAlt: "Client success value"
},
{
id: "2", title: "Innovation", description: "We stay ahead of trends and embrace new technologies to deliver cutting-edge solutions.", imageSrc: "http://img.b2bpic.net/free-photo/programming-software-code-application-technology-concept_53876-123931.jpg", imageAlt: "Innovation value"},
id: "2", title: "Innovation", description: "We stay ahead of trends and embrace new technologies to deliver cutting-edge solutions.", imageSrc: "http://img.b2bpic.net/free-photo/programming-software-code-application-technology-concept_53876-123931.jpg", imageAlt: "Innovation value"
},
{
id: "3", title: "Transparency", description: "Clear communication, honest feedback, and transparent pricing. No hidden fees or surprises.", imageSrc: "http://img.b2bpic.net/free-vector/search-engine-optimization_24908-55724.jpg", imageAlt: "Transparency value"},
id: "3", title: "Transparency", description: "Clear communication, honest feedback, and transparent pricing. No hidden fees or surprises.", imageSrc: "http://img.b2bpic.net/free-vector/search-engine-optimization_24908-55724.jpg", imageAlt: "Transparency value"
},
]}
/>
</div>
@@ -95,11 +99,14 @@ export default function AboutPage() {
useInvertedBackground={false}
avatars={[
{
src: "http://img.b2bpic.net/free-photo/smiling-confident-manager-cafeteria_1098-20954.jpg", alt: "David Chen"},
src: "http://img.b2bpic.net/free-photo/smiling-confident-manager-cafeteria_1098-20954.jpg", alt: "David Chen"
},
{
src: "http://img.b2bpic.net/free-photo/closeup-smiling-senior-business-man-relaxing_1262-2369.jpg", alt: "Emily Rodriguez"},
src: "http://img.b2bpic.net/free-photo/closeup-smiling-senior-business-man-relaxing_1262-2369.jpg", alt: "Emily Rodriguez"
},
{
src: "http://img.b2bpic.net/free-photo/agent-office-using-software-laptop-build-emergency-fund-plan-family_482257-112015.jpg", alt: "Alex Thompson"},
src: "http://img.b2bpic.net/free-photo/agent-office-using-software-laptop-build-emergency-fund-plan-family_482257-112015.jpg", alt: "Alex Thompson"
},
]}
/>
</div>
@@ -112,13 +119,16 @@ export default function AboutPage() {
socialLinks={[
{
icon: Facebook,
href: "https://facebook.com/webild", ariaLabel: "Facebook"},
href: "https://facebook.com/webild", ariaLabel: "Facebook"
},
{
icon: Linkedin,
href: "https://linkedin.com/company/webild", ariaLabel: "LinkedIn"},
href: "https://linkedin.com/company/webild", ariaLabel: "LinkedIn"
},
{
icon: Twitter,
href: "https://twitter.com/webild", ariaLabel: "Twitter"},
href: "https://twitter.com/webild", ariaLabel: "Twitter"
},
]}
/>
</div>