'use client'; import Link from '@/components/Link'; import { usePathname } from 'next/navigation'; import { DocsConfigType } from '@/types'; import clsx from 'clsx'; import { docsConfig } from '@/config/docs'; export default function DocsMenu() { const pathname = usePathname(); return ( ); }