From c10c00bddedd1dd7299ba098e6e2d140affb03c4 Mon Sep 17 00:00:00 2001 From: alexwine36 Date: Tue, 17 Sep 2024 14:15:36 -0600 Subject: [PATCH] fix: updated link type --- apps/sample-nextjs/src/components/Navigation/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/sample-nextjs/src/components/Navigation/index.tsx b/apps/sample-nextjs/src/components/Navigation/index.tsx index 2e58b5f..4794784 100644 --- a/apps/sample-nextjs/src/components/Navigation/index.tsx +++ b/apps/sample-nextjs/src/components/Navigation/index.tsx @@ -1,5 +1,5 @@ +import Link from 'next/link'; import styles from './index.module.css'; - const pages = [ { name: 'Home', href: '/' }, { name: 'Draw', href: '/draw' }, @@ -11,7 +11,7 @@ export const Navigation = () => {