aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/links/nav-link.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2023-01-23 19:01:28 +0100
committerArmand Philippot <git@armandphilippot.com>2023-01-23 19:32:15 +0100
commit947830904239d51ec9e94971fed6346c1089911f (patch)
treec5ea2b6107b428e687562ee64c175fd0589adcb4 /src/components/atoms/links/nav-link.tsx
parent74c08b59bb71222b397637c16f84c69451aff685 (diff)
chore: make Links and Images compliant with Next.js 13
Diffstat (limited to 'src/components/atoms/links/nav-link.tsx')
-rw-r--r--src/components/atoms/links/nav-link.tsx8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/components/atoms/links/nav-link.tsx b/src/components/atoms/links/nav-link.tsx
index 7c6fede..66ee570 100644
--- a/src/components/atoms/links/nav-link.tsx
+++ b/src/components/atoms/links/nav-link.tsx
@@ -24,11 +24,9 @@ export type NavLinkProps = {
*/
const NavLink: FC<NavLinkProps> = ({ href, label, logo }) => {
return (
- <Link href={href}>
- <a className={styles.link}>
- {logo}
- {label}
- </a>
+ <Link className={styles.link} href={href}>
+ {logo}
+ {label}
</Link>
);
};