diff --git a/src/Client/src/components/Footer.tsx b/src/Client/src/components/Footer.tsx
index a56079f..821707d 100644
--- a/src/Client/src/components/Footer.tsx
+++ b/src/Client/src/components/Footer.tsx
@@ -8,7 +8,7 @@ export default function Footer() {
-
+
© {currentYear} Beau Findlay. All rights reserved.
diff --git a/src/Client/src/components/NavLink.tsx b/src/Client/src/components/NavLink.tsx
index 16b4154..ae04782 100644
--- a/src/Client/src/components/NavLink.tsx
+++ b/src/Client/src/components/NavLink.tsx
@@ -7,14 +7,14 @@ interface Props {
}
export default function NavLink({ children, to, className }: Props) {
- const defaultStyles = "text-sm font-semibold leading-6";
+ const defaultStyles = "text-base font-semibold leading-6 hover:text-gray-300";
const styles = className ? className : defaultStyles;
return (
- isActive ? `${styles} underline underline-offset-2` : styles
+ isActive ? `${styles} underline underline-offset-4` : styles
}
>
{children}
diff --git a/src/Client/src/components/SocialIcons.tsx b/src/Client/src/components/SocialIcons.tsx
index c816a76..d916b09 100644
--- a/src/Client/src/components/SocialIcons.tsx
+++ b/src/Client/src/components/SocialIcons.tsx
@@ -29,7 +29,7 @@ export default function SocialIcons({ size = 20 }: Props) {
{socialIcon.name}
{socialIcon.icon}