Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix footer links to redirect to blank page #271

Merged
merged 1 commit into from
Nov 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix footer links to redirect to blank page
  • Loading branch information
bydan0 committed Nov 22, 2024
commit 87b31e923491b3ad0380a08f896c8593d3957b7c
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