'use client' import Link from 'next/link' import { usePathname } from 'next/navigation' import { cn } from '@/lib/utils' const NAV_ITEMS = [ { href: '/', label: 'Dashboard' }, { href: '/docker', label: 'Docker' }, { href: '/git', label: 'Git' }, { href: '/systemd', label: 'systemd' }, { href: '/caddy', label: 'Caddy' }, { href: '/flows', label: 'Flows' }, { href: '/audit', label: 'Audit' }, { href: '/settings', label: 'Settings' }, ] export default function AppNav() { const pathname = usePathname() return ( ) }