Skip to content

Commit

Permalink
Merge pull request #271 from bydan0/feat/247
Browse files Browse the repository at this point in the history
Fix footer links to redirect to blank page
  • Loading branch information
EmmanuelAR authored Nov 26, 2024
2 parents 615c3a6 + 87b31e9 commit f5900da
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/gostarkme-web/components/ui/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const Footer = (): React.JSX.Element => {
</aside>
<nav>
<div className="grid grid-flow-col gap-4">
<a className="mx-1" href="https://github.com/web3wagers/gostarkme">
<a className="mx-1" href="https://github.com/web3wagers/gostarkme" target="_blank" >
<svg
height="35"
viewBox="0 0 24 24"
Expand All @@ -32,7 +32,7 @@ const Footer = (): React.JSX.Element => {
</g>
</svg>
</a>
<a className="mx-1" href="https://x.com/undefined_org_">
<a className="mx-1" href="https://x.com/undefined_org_" target="_blank" >
<svg
height="35"
viewBox="0 0 24 24"
Expand All @@ -47,7 +47,7 @@ const Footer = (): React.JSX.Element => {
/>
</svg>
</a>
<a className="mx-1" href="https://discord.gg/sEpnC6JB2U">
<a className="mx-1" href="https://discord.gg/sEpnC6JB2U" target="_blank" >
<svg
height="35"
viewBox="0 0 24 24"
Expand Down

0 comments on commit f5900da

Please sign in to comment.