'use client'; import type { HTMLAttributes } from 'react'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { BarChart3, FileStack, Settings, Users, Wallet2 } from 'lucide-react'; import { cn } from '@documenso/ui/lib/utils'; import { Button } from '@documenso/ui/primitives/button'; export type AdminNavProps = HTMLAttributes; export const AdminNav = ({ className, ...props }: AdminNavProps) => { const pathname = usePathname(); return ( Stats Users Documents Subscriptions Site Settings ); };