'use client' import Link from 'next/link' import { usePathname } from 'next/navigation' const TABS = [ { href: '/manage', label: 'Libraries' }, { href: '/manage/tags', label: 'Tags' }, { href: '/manage/users', label: 'Users' }, ] export default function ManageSubNav() { const pathname = usePathname() return ( ) }