mirror of
https://github.com/documenso/documenso.git
synced 2025-11-14 16:51:38 +10:00
32 lines
921 B
TypeScript
32 lines
921 B
TypeScript
'use client';
|
|
|
|
import { HTMLAttributes } from 'react';
|
|
|
|
import Link from 'next/link';
|
|
import { usePathname } from 'next/navigation';
|
|
|
|
import { cn } from '@documenso/ui/lib/utils';
|
|
|
|
export type DesktopNavProps = HTMLAttributes<HTMLDivElement>;
|
|
|
|
export const DesktopNav = ({ className, ...props }: DesktopNavProps) => {
|
|
const pathname = usePathname();
|
|
|
|
return (
|
|
<div className={cn('ml-8 hidden flex-1 gap-x-6 md:flex', className)} {...props}>
|
|
{/* No Nav tabs while there is only one main page */}
|
|
{/* <Link
|
|
href="/documents"
|
|
className={cn(
|
|
'text-muted-foreground focus-visible:ring-ring ring-offset-background rounded-md font-medium leading-5 hover:opacity-80 focus-visible:outline-none focus-visible:ring-2 ',
|
|
{
|
|
'text-foreground': pathname?.startsWith('/documents'),
|
|
},
|
|
)}
|
|
>
|
|
Documents
|
|
</Link> */}
|
|
</div>
|
|
);
|
|
};
|