Add src/app/team/page.tsx

This commit is contained in:
2026-04-09 16:41:41 +00:00
parent 4d07b2a4ca
commit d282f373c3

53
src/app/team/page.tsx Normal file
View File

@@ -0,0 +1,53 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import ReactLenis from "lenis/react";
export default function TeamPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Pricing", id: "/pricing" },
{ name: "Team", id: "/team" },
]}
brandName="Vantage Media"
button={{ text: "Get Proposal", href: "/#contact" }}
/>
<TeamCardEleven
animationType="slide-up"
textboxLayout="default"
title="Our Experts"
description="Meet the creative minds behind our success."
groups={[
{
id: "leadership", groupTitle: "Management", members: [
{ id: "m1", title: "Alex Rivers", subtitle: "CEO & Founder", detail: "10+ years in digital growth." },
{ id: "m2", title: "Jordan Smith", subtitle: "COO", detail: "Expert in scaling operations." }
]
},
{
id: "creative", groupTitle: "Creative", members: [
{ id: "c1", title: "Sam Lee", subtitle: "Creative Director", detail: "Visual storytelling maestro." },
{ id: "c2", title: "Casey West", subtitle: "Lead Strategist", detail: "Data-driven audience growth." }
]
}
]}
/>
<FooterMedia
logoText="Vantage Media"
columns={[
{ title: "Agency", items: [{ label: "About Us", href: "/#about" }, { label: "Our Work", href: "/#features" }, { label: "Pricing", href: "/pricing" }, { label: "Team", href: "/team" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
]}
/>
</ReactLenis>
</ThemeProvider>
);
}