Skip to content

Commit

Permalink
Fix links (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
guibescos authored Nov 18, 2023
1 parent 09077db commit 80e674f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
5 changes: 4 additions & 1 deletion frontend/components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,10 @@ export const Layout = ({ children }: LayoutProps) => {
<div className="mt-6">
<p className="font-body text-[15px] ">
Useful links:{' '}
<Link href="/" className="ml-5 inline-block underline">
<Link
href="https://pyth.network/airdrop/faq"
className="ml-5 inline-block underline"
>
FAQ
</Link>
</p>
Expand Down
8 changes: 6 additions & 2 deletions frontend/sections/TokensReceived.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,12 @@ export const TokensReceived = ({ totalCoinsClaimed }: TokensReceivedProps) => {
</span>
</Link>
</div>
{/* TODO: link to governance later */}
<Button onClick={() => {}} type={'primary'}>
<Button
onClick={() => {
window.location.href = 'https://realms.pyth.network/dao/PYTH'
}}
type={'primary'}
>
explore governance
</Button>
</div>
Expand Down

1 comment on commit 80e674f

@vercel
Copy link

@vercel vercel bot commented on 80e674f Nov 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.