Skip to content

Commit

Permalink
add bitcoin rocks to footer
Browse files Browse the repository at this point in the history
  • Loading branch information
secondl1ght committed Jun 10, 2023
1 parent 6409f99 commit cc1eec2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/components/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
{ link: '/license', name: 'License' },
{ link: '/privacy-policy', name: 'Privacy' },
{ link: 'https://stats.uptimerobot.com/7kgEVtzlV1', name: 'Status' },
{ link: 'https://bitcoin.rocks/business/', name: 'Bitcoin for Business', external: true },
{ link: '/bitcoin.pdf', name: 'White Paper' },
{ link: '/cypherpunks-manifesto.pdf', name: 'Cypherpunks' }
];
Expand All @@ -25,6 +26,8 @@
{#each links as link}
<a
href={link.link}
target={link.external ? '_blank' : '_self'}
rel="noreferrer"
class="mx-2.5 {link.name !== 'Cypherpunks'
? 'mb-2.5 xl:mb-0'
: ''} text-sm text-link transition-colors hover:text-hover dark:text-white/50 dark:hover:text-link"
Expand Down

0 comments on commit cc1eec2

Please sign in to comment.