blob: a94d774f32e9a68c494d007817527412e891623b (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { Link, LinkProps } from "@remix-run/react";
export default function NavigateLink(props: LinkProps) {
return (
<Link
{...props}
className="text-lg text-white bg-pink-600 px-4 py-2 rounded transition duration-300 hover:bg-pink-500"
/>
);
}
|