aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/NavigateLink.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/app/components/NavigateLink.tsx')
-rw-r--r--frontend/app/components/NavigateLink.tsx10
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"
+ />
+ );
+}