diff options
author | Ashelyn Rose <git@tempest.dev> | 2023-12-02 18:09:37 -0700 |
---|---|---|
committer | Ashelyn Rose <git@tempest.dev> | 2023-12-02 18:09:37 -0700 |
commit | 14bfd8bc27e0e6bb4037b1089b64e31312e5a57d (patch) | |
tree | f9fd1a93e4bc9b7f3d605c8316009f20d728613a /app/page.tsx | |
parent | 5289646abb229c9948dafda41d93a8bf85d56144 (diff) |
Change <a> for <Link> where appropriate
Diffstat (limited to 'app/page.tsx')
-rw-r--r-- | app/page.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/page.tsx b/app/page.tsx index eeb99af..b044b16 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,4 +1,5 @@ -import React from 'react'; +import React from 'react' +import Link from 'next/link' import styles from '~/styles/index.module.css' @@ -39,7 +40,7 @@ export default function Index() { <p> <em>Note:</em> This is the information for our system in aggregate, - for individual info see our <a href="/about">about</a> page + for individual info see our <Link href="/about">about</Link> page </p> </main> ) |