Add src/app/about/page.tsx

This commit is contained in:
2026-05-08 19:40:54 +00:00
parent 7deb2556a9
commit 8dedd37fa4

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

@@ -0,0 +1,50 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import AboutMetric from "@/components/sections/about/AboutMetric";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Zap, Users, Award, TrendingUp } from "lucide-react";
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" }}
/>
<AboutMetric
title="About Our Agency"
metrics={[
{ icon: Award, label: "Industry Experience", value: "8+ Years" },
{ icon: Users, label: "Happy Clients", value: "100+" },
{ icon: Zap, label: "Projects Completed", value: "250+" },
]}
metricsAnimation="slide-up"
useInvertedBackground={false}
/>
<ContactCTA
tag="Work With Us"
title="Let's Create Something Great"
description="We are always looking for new challenges. Contact us to start your next project."
buttons={[{ text: "Get in Touch", href: "/contact" }]}
/>
<FooterBase
logoText="Webild"
columns={[
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }
]}
/>
</ReactLenis>
</ThemeProvider>
);
}