From 84a35017aebbefa278af01413f03c6cdb978950b Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 12 Jun 2026 21:25:08 +0000 Subject: [PATCH] Update src/app/about/page.tsx --- src/app/about/page.tsx | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index e34719d..b0266ac 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -26,9 +26,9 @@ export default function WebAgency2AboutPage() { navItems={[ { name: "Work", id: "work" }, { name: "Services", id: "services" }, - { name: "About", href: "/about" }, - { name: "Team", href: "/team" }, - { name: "Contact", href: "/contact" } + { name: "About", id: "/about" }, + { name: "Team", id: "/team" }, + { name: "Contact", id: "/contact" } ]} button={{ text: "Get Started", href: "/contact" }} /> @@ -36,7 +36,6 @@ export default function WebAgency2AboutPage() { heading={[ { type: 'text', content: 'We are Webild, a digital agency crafting exceptional web experiences.' } ]} - description="At Webild, we combine creativity with technical expertise to build stunning websites that drive results. Our team is passionate about digital innovation and dedicated to helping businesses grow online." buttons={[ { text: 'View Our Work', href: '#work' }, { text: 'Contact Us', href: '/contact' } @@ -55,28 +54,28 @@ export default function WebAgency2AboutPage() { { label: "Team", href: "/team" }, { label: "Work", href: "#work" }, { label: "Services", href: "#services" }, - { label: "Contact", href: "/contact" }, - ], + { label: "Contact", href: "/contact" } + ] }, { title: "Services", items: [ { label: "Web Development", href: "#" }, { label: "SEO", href: "#" }, { label: "Branding", href: "#" }, - { label: "UI/UX Design", href: "#" }, - ], + { label: "UI/UX Design", href: "#" } + ] }, { title: "Connect", items: [ { label: "Twitter", href: "#" }, { label: "LinkedIn", href: "#" }, { label: "Instagram", href: "#" }, - { label: "Dribbble", href: "#" }, - ], - }, + { label: "Dribbble", href: "#" } + ] + } ]} /> ); -} \ No newline at end of file +}