Files
www_veda_2025/public/images/components/NavLink.jsx
2025-08-25 11:24:16 +02:00

13 lines
280 B
JavaScript

import Link from 'next/link'
export function NavLink({ href, children }) {
return (
<Link
href={href}
className="inline-block px-2 py-1 text-sm text-nav-dark hover:text-primary-terracotta transition-colors duration-200"
>
{children}
</Link>
)
}