- Updated NavItem to use Next.js Link component - Changed from onClick to href for proper routing - Added usePathname to detect current route - Assets navigation now links to /product page - Active state automatically highlights based on current path - Added dark mode hover states Navigation: - Click "Assets" in sidebar to view Product page - Automatic active highlighting on current page - Smooth client-side navigation Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
55 lines
1.2 KiB
TypeScript
55 lines
1.2 KiB
TypeScript
import Image from "next/image";
|
|
import Link from "next/link";
|
|
|
|
interface NavItemProps {
|
|
icon: string;
|
|
label: string;
|
|
isActive: boolean;
|
|
href: string;
|
|
}
|
|
|
|
export default function NavItem({ icon, label, isActive, href }: NavItemProps) {
|
|
return (
|
|
<Link
|
|
href={href}
|
|
className={`
|
|
rounded-xl
|
|
pl-4
|
|
flex
|
|
items-center
|
|
gap-2
|
|
h-[42px]
|
|
w-full
|
|
overflow-hidden
|
|
transition-colors
|
|
${isActive
|
|
? 'bg-fill-secondary-click dark:bg-gray-700'
|
|
: 'hover:bg-gray-50 dark:hover:bg-gray-700'
|
|
}
|
|
`}
|
|
>
|
|
<div className="w-[22px] h-[22px] flex-shrink-0 relative">
|
|
<Image
|
|
src={icon}
|
|
alt={label}
|
|
width={22}
|
|
height={22}
|
|
className="w-full h-full"
|
|
/>
|
|
</div>
|
|
<span
|
|
className={`
|
|
text-sm
|
|
leading-[150%]
|
|
${isActive
|
|
? 'text-text-primary dark:text-white font-bold'
|
|
: 'text-text-tertiary dark:text-gray-400 font-medium'
|
|
}
|
|
`}
|
|
>
|
|
{label}
|
|
</span>
|
|
</Link>
|
|
);
|
|
}
|