"use client" import Link from "next/link" import { usePathname } from "next/navigation" import { SidebarNavItem } from "types" import { cn } from "@/lib/utils" export interface DocsSidebarNavProps { items: SidebarNavItem[] } export function DocsSidebarNav({ items }: DocsSidebarNavProps) { const pathname = usePathname() return items.length ? (