Files
www_maison_noire/src/components/NavLink.jsx
2025-08-20 16:18:35 +02:00

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>
)
}