Add src/app/team/page.tsx
This commit is contained in:
53
src/app/team/page.tsx
Normal file
53
src/app/team/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user