Add src/app/teams/page.tsx

This commit is contained in:
2026-05-25 03:39:04 +00:00
parent 9e572cd627
commit a2f504ba06

43
src/app/teams/page.tsx Normal file
View File

@@ -0,0 +1,43 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TeamCardSix from '@/components/sections/team/TeamCardSix';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function TeamsPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Teams", id: "/teams" },
{ name: "Leaderboards", id: "/leaderboards" }
]}
brandName="ClanForce"
/>
<div className="pt-24">
<TeamCardSix
title="Active Clans & Teams"
description="Discover and connect with the most competitive teams currently on the platform."
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
members={[
{ id: "t1", name: "Alpha Vanguard", role: "Tactical FPS" },
{ id: "t2", name: "Nova Squad", role: "Battle Royale" },
{ id: "t3", name: "Zero Point", role: "Strategy" }
]}
/>
</div>
<FooterBase
columns={[]}
logoText="ClanForce"
/>
</ReactLenis>
</ThemeProvider>
);
}