Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Make nav buttons actual links
  • Loading branch information
regalijan committed Oct 19, 2023
1 parent 2b805cb commit 004af30
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions components/Navigation.tsx
Expand Up @@ -100,17 +100,17 @@ export default function (props: {
<Spacer />
<Spacer />
<Center gap="1.25rem" whiteSpace="nowrap">
<Button variant="ghost">
<Link href="/about">About Us</Link>
<Button as="a" href="/about" variant="ghost">
About Us
</Button>
<Button variant="ghost">
<Link href="/team">Our Team</Link>
<Button as="a" href="/team" variant="ghost">
Our Team
</Button>
<Button variant="ghost">
<Link href="/support">Support</Link>
<Button as="a" href="/support" variant="ghost">
Support
</Button>
<Button variant="ghost">
<Link href="/mod-queue">Moderation</Link>
<Button as="a" href="/mod-queue" variant="ghost">
Moderation
</Button>
</Center>
<Spacer />
Expand Down

0 comments on commit 004af30

Please sign in to comment.