Add src/app/about/page.tsx

This commit is contained in:
2026-05-11 14:47:04 +00:00
parent 81167992ec
commit 5154869967

35
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,35 @@
"use client";
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";
export default function AboutPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Work", id: "/work" },
{ name: "Services", id: "/#services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Get Started", href: "/contact" }}
/>
<InlineImageSplitTextAbout
heading={[{ type: 'text', content: 'Crafting the Future of AI-Driven Customer Service' }]}
useInvertedBackground={false}
/>
<FooterBase
logoText="Webild"
leftLink={{ text: "Home", href: "/" }}
rightLink={{ text: "Contact", href: "/contact" }}
/>
</ReactLenis>
</ThemeProvider>
);
}