/** Docs sidebar navigation — highlights the active page via usePathname. */ 'use client' import { usePathname } from 'next/navigation' import Link from 'next/link' /** Renders the docs sidebar with active-link highlighting for the current route. */ export default function DocsSidebar() { const pathname = usePathname() return ( ) }