forked from veda/www_veda_2025
13 lines
298 B
JavaScript
13 lines
298 B
JavaScript
import Link from 'next/link'
|
|
|
|
export function NavLink({ href, children }) {
|
|
return (
|
|
<Link
|
|
href={href}
|
|
className="inline-block rounded-lg px-2 py-1 text-sm text-[#245527] hover:bg-[#245527] hover:text-white transition-colors duration-200"
|
|
>
|
|
{children}
|
|
</Link>
|
|
)
|
|
}
|