Update src/app/about/page.tsx

This commit is contained in:
2026-04-23 05:35:31 +00:00
parent 08a065a788
commit f8230c7b2f

View File

@@ -4,7 +4,7 @@ import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
import FooterBase from "@/components/sections/footer/FooterBase";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
export default function AboutPage() {
return (
@@ -24,12 +24,11 @@ export default function AboutPage() {
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Work", id: "work" },
{ name: "Services", id: "services" },
{ name: "Work", id: "/portfolio" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Get Started", href: "/contact" }}
/>
<InlineImageSplitTextAbout
heading={[
@@ -38,16 +37,17 @@ export default function AboutPage() {
{ type: "text", content: "through innovation and passion." }
]}
buttons={[{ text: "Let's Talk", href: "/contact" }]}
useInvertedBackground={false}
/>
<FooterBase
<FooterBaseReveal
logoText="Webild"
copyrightText="© 2026 | Webild"
columns={[
{
title: "Company", items: [
{ label: "About", href: "/about" },
{ label: "Services", href: "#services" },
{ label: "Work", href: "#work" },
{ label: "Services", href: "/services" },
{ label: "Work", href: "/portfolio" },
{ label: "Contact", href: "/contact" },
],
},
@@ -56,4 +56,4 @@ export default function AboutPage() {
</ReactLenis>
</ThemeProvider>
);
}
}