"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; const links = [ { href: "/spectate", label: "👁 Spectate", desc: "Watch live matches" }, { href: "/tournament", label: "🏆 Tournament", desc: "Tournament standings" }, { href: "/play", label: "🎮 Play", desc: "Join as a player" }, ]; export default function Nav() { const path = usePathname(); return ( ); }