Switch to version 2: added src/app/about/page.tsx

This commit is contained in:
2026-04-15 03:39:33 +00:00
parent 60297f9f25
commit d031d201a5

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

@@ -0,0 +1,63 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import TeamCardSix from "@/components/sections/team/TeamCardSix";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import { Users } 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="metallic"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Get Started", href: "/contact" }}
/>
<div className="pt-32 pb-20">
<div className="container mx-auto px-4">
<h1 className="text-5xl font-bold mb-8">Our Story</h1>
<p className="text-xl text-muted-foreground">Founded in a small barber shop in 2018, Webild was born from the idea that local business deserves world-class digital craft. We moved from cutting hair to cutting code, bringing the same precision, style, and personal touch to every website we build.</p>
</div>
</div>
<TeamCardSix
title="The Team"
description="The creative minds behind your next project."
animationType="slide-up"
gridVariant="uniform-all-items-equal"
textboxLayout="default"
useInvertedBackground={false}
members={[
{ id: "1", name: "John Doe", role: "Lead Barber & Developer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp" },
{ id: "2", name: "Jane Smith", role: "Designer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-2.webp" },
]}
/>
<FooterMedia
logoText="Webild"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp?_wi=1"
copyrightText="© 2026 | Webild"
columns={[
{ title: "Company", items: [{ label: "Home", href: "/" }, { label: "Contact", href: "/contact" }] }
]}
/>
</ReactLenis>
</ThemeProvider>
);
}