diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-11 15:59:56 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-11 19:40:39 +0900 |
| commit | 1c532c76f5e3c6c0dcfa38d005b4eff245e9dbc5 (patch) | |
| tree | faaa64b67d8254cdb53701626aec860ece50f5da /frontend/app/components/NavigateLink.tsx | |
| parent | 7089515e47fb6f7e9aa3db4bbbac2d3300ff0048 (diff) | |
| download | iosdc-japan-2024-albatross-1c532c76f5e3c6c0dcfa38d005b4eff245e9dbc5.tar.gz iosdc-japan-2024-albatross-1c532c76f5e3c6c0dcfa38d005b4eff245e9dbc5.tar.zst iosdc-japan-2024-albatross-1c532c76f5e3c6c0dcfa38d005b4eff245e9dbc5.zip | |
feat(frontend): improve dashboard styling
Diffstat (limited to 'frontend/app/components/NavigateLink.tsx')
| -rw-r--r-- | frontend/app/components/NavigateLink.tsx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/frontend/app/components/NavigateLink.tsx b/frontend/app/components/NavigateLink.tsx new file mode 100644 index 0000000..a94d774 --- /dev/null +++ b/frontend/app/components/NavigateLink.tsx @@ -0,0 +1,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" + /> + ); +} |
