Update src/app/about/page.tsx

This commit is contained in:
2026-06-12 21:25:08 +00:00
parent f4806798a8
commit 84a35017ae

View File

@@ -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: "#" }
]
}
]}
/>
</ReactLenis>
</ThemeProvider>
);
}
}