'use client'; import { HTMLAttributes } from 'react'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { CreditCard, Key, User } from 'lucide-react'; import { IS_SUBSCRIPTIONS_ENABLED } from '@documenso/lib/constants/features'; import { cn } from '@documenso/ui/lib/utils'; import { Button } from '@documenso/ui/primitives/button'; export type DesktopNavProps = HTMLAttributes; export const DesktopNav = ({ className, ...props }: DesktopNavProps) => { const pathname = usePathname(); return ( Profile Password {IS_SUBSCRIPTIONS_ENABLED && ( Billing )} ); };