99 lines
4.1 KiB
TypeScript
99 lines
4.1 KiB
TypeScript
"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 TeamCardOne from "@/components/sections/team/TeamCardOne";
|
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
|
import { Clock, Sparkles, Star } from "lucide-react";
|
|
|
|
export default function AboutPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="text-stagger"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="pill"
|
|
contentWidth="medium"
|
|
sizing="medium"
|
|
background="none"
|
|
cardStyle="glass-elevated"
|
|
primaryButtonStyle="gradient"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="medium"
|
|
>
|
|
<ReactLenis root>
|
|
<NavbarLayoutFloatingOverlay
|
|
brandName="Webild"
|
|
navItems={[
|
|
{ name: "Home", id: "/" },
|
|
{ name: "Work", id: "/#work" },
|
|
{ name: "Services", id: "/#services" },
|
|
{ name: "About", id: "/about" },
|
|
{ name: "Contact", id: "/contact" }
|
|
]}
|
|
button={{ text: "Get Started", href: "/contact" }}
|
|
/>
|
|
|
|
<AboutMetric
|
|
title="Crafting Digital Excellence Since 2018"
|
|
metrics={[
|
|
{ icon: Clock, label: "Years of Experience", value: "5+" },
|
|
{ icon: Sparkles, label: "Projects Completed", value: "100+" },
|
|
{ icon: Star, label: "Client Satisfaction", value: "High" }
|
|
]}
|
|
metricsAnimation="blur-reveal"
|
|
useInvertedBackground={false}
|
|
/>
|
|
|
|
<TeamCardOne
|
|
title="Meet Our Talented Team"
|
|
description="Dedicated to bringing your vision to life with creativity and expertise."
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
animationType="slide-up"
|
|
gridVariant="uniform-all-items-equal"
|
|
members={[
|
|
{ id: "1", name: "Sarah Miller", role: "Lead Developer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp", imageAlt: "Sarah Miller" },
|
|
{ id: "2", name: "Valentina Reyes", role: "Creative Director", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.webp", imageAlt: "Valentina Reyes" },
|
|
{ id: "3", name: "Carlos Mendoza", role: "UX Designer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-3.webp", imageAlt: "Carlos Mendoza" },
|
|
{ id: "4", name: "Emily Chen", role: "Marketing Strategist", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-4.webp", imageAlt: "Emily Chen" },
|
|
{ id: "5", name: "David Lee", role: "Project Manager", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-5.webp", imageAlt: "David Lee" }
|
|
]}
|
|
/>
|
|
|
|
<FooterBase
|
|
logoText="Webild"
|
|
copyrightText="© 2026 | Webild"
|
|
columns={[
|
|
{
|
|
title: "Company", items: [
|
|
{ label: "About", href: "/about" },
|
|
{ label: "Services", href: "/#services" },
|
|
{ label: "Work", href: "/#work" },
|
|
{ label: "Contact", href: "/contact" },
|
|
],
|
|
},
|
|
{
|
|
title: "Services", items: [
|
|
{ label: "Web Development", href: "/#" },
|
|
{ label: "SEO", href: "/#" },
|
|
{ label: "Branding", href: "/#" },
|
|
{ label: "UI/UX Design", href: "/#" },
|
|
],
|
|
},
|
|
{
|
|
title: "Connect", items: [
|
|
{ label: "Twitter", href: "/#" },
|
|
{ label: "LinkedIn", href: "/#" },
|
|
{ label: "Instagram", href: "/#" },
|
|
{ label: "Dribbble", href: "/#" },
|
|
],
|
|
},
|
|
]}
|
|
/>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|