Skip to content
This repository was archived by the owner on Dec 26, 2023. It is now read-only.

Commit 5d3f1f2

Browse files
with-heartOrlundoHubbardjcstein
committed
refactor: add a elements to Links
Co-authored-by: Orlundo Hubbard <[email protected]> Co-authored-by: Josh Stein <[email protected]>
1 parent de8e1c4 commit 5d3f1f2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

frontend/src/components/Nav/index.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ export default function Gslr() {
4747
display={{ base: 'none', md: 'inline-flex' }}
4848
>
4949
<Link href="/" passHref>
50-
{t('home')}
50+
<a>{t('home')}</a>
5151
</Link>
5252
<Link href="/mint" passHref>
53-
{t('mintTokenText')}
53+
<a>{t('mintTokenText')}</a>
5454
</Link>
5555
<Link href="/projects" passHref>
56-
{t('projects')}
56+
<a>{t('projects')}</a>
5757
</Link>
5858
<chakra.a
5959
href="https://github.com/Developer-DAO/developer-dao"
@@ -103,15 +103,15 @@ export default function Gslr() {
103103
/>
104104

105105
<Link href="/" passHref>
106-
{t('home')}
106+
<a>{t('home')}</a>
107107
</Link>
108108

109109
<Link href="/mint" passHref>
110-
{t('mintTokenText')}
110+
<a>{t('mintTokenText')}</a>
111111
</Link>
112112

113113
<Link href="/projects" passHref>
114-
{t('projects')}
114+
<a>{t('projects')}</a>
115115
</Link>
116116

117117
<chakra.a

0 commit comments

Comments
 (0)