13 lines
280 B
JavaScript
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>
|
|
)
|
|
}
|