fixed footer links

This commit is contained in:
juan 2021-03-16 12:42:54 -05:00
parent a0243bc26e
commit 7ae00c9b6c
2 changed files with 15 additions and 8 deletions

View File

@ -12,14 +12,17 @@ export const Footer = () => {
<SecurityAuditButton />
<Button
shape={'circle'}
target={'_blank'}
href={'https://github.com/solana-labs/oyster'}
icon={<GithubOutlined />}
style={{ marginRight: '20px' }}
>
<Link to={'https://github.com/solana-labs/oyster'}></Link>
</Button>
<Button shape={'circle'} icon={<TwitterOutlined />}>
<Link to={'https://twitter.com/solana'}></Link>
</Button>
></Button>
<Button
shape={'circle'}
target={'_blank'}
href={'https://twitter.com/solana'}
icon={<TwitterOutlined />}
></Button>
</div>
);
};

View File

@ -6,8 +6,12 @@ import './index.less';
export const SecurityAuditButton = () => {
return (
<Button className={'audit-button'}>
<Link to={'https://github.com/certusone/wormhole'}>Security Audit</Link>
<Button
className={'audit-button'}
target={'_blank'}
href={'https://github.com/certusone/wormhole'}
>
Security Audit
</Button>
);
};