'use client'; import { Button } from '@repo/ui/components/ui/button'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; type NavButtonProps = { readonly disabled?: boolean; readonly href: string; readonly icon: React.ReactNode; readonly label: string; }; export function NavButton({ disabled, href, icon, label }: NavButtonProps) { const pathname = usePathname(); return ( ); }