Skip to content

Commit

Permalink
fix: adds missing mobile nav links
Browse files Browse the repository at this point in the history
  • Loading branch information
ixahmedxi committed May 30, 2024
1 parent 88fe450 commit 8a1c2e8
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions src/app/(marketing)/_components/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,16 +162,28 @@ export const Navbar = () => {
<div className="container">
<ul className="flex flex-col gap-3">
<li>
<Link href="/">Early access</Link>
<Link href="/early-access">Early access</Link>
</li>
<li>
<Link href="/">Blog</Link>
<Link href="/blog">Blog</Link>
</li>
<li>
<Link href="/">Contribute</Link>
<a
href={constants.github_repo}
target="_blank"
rel="noreferrer noopener"
>
Contribute
</a>
</li>
<li>
<Link href="/">Discord</Link>
<a
href={constants.discord}
target="_blank"
rel="noreferrer noopener"
>
Discord
</a>
</li>
</ul>
</div>
Expand Down

0 comments on commit 8a1c2e8

Please sign in to comment.