'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { cn } from '@/lib/utils'; import { getVisibleNavItems, type AppRole } from './nav-items'; export function Sidebar({ role }: { role: AppRole }) { const pathname = usePathname(); const items = getVisibleNavItems(role); return ( ); }