"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { cn } from "@/lib/utils"; import { docsNavigation } from "@/lib/docs-navigation"; export function DocsSidebar() { const pathname = usePathname(); return ( ); }