diff --git a/README.md b/README.md index 97a1f95..d78504b 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,7 @@ _Bitcoin Lightning wallets that support sending and receiving to **Lightning Add | [SBW](https://lightning-wallet.com/) | ☑️ | ---- | | [ZEBEDEE](https://zebedee.io/wallet) (and [Bots](https://zebedee.io/bots/), and [Extensions](https://zebedee.io/wallet)) | ☑️ | ☑️ | | [Zeus](https://github.com/ZeusLN/zeus) | ☑️ | ---- | +| [Alby](https://getalby.com) | ☑️ | ☑️ | ## TLDR diff --git a/components/community.js b/components/community.js index bd85480..fa20fea 100644 --- a/components/community.js +++ b/components/community.js @@ -348,6 +348,10 @@ const SATDRESS_SERVERS = [ urlLink: 'https://tinytip.me', urlText: '@tinytip.me', }, + { + urlLink: 'https://getalby.com', + urlText: '@getalby.com', + }, ]; @@ -445,6 +449,16 @@ const WALLETS = [ downloadText: 'Open @LightningTipBot', url: 'https://t.me/LightningTipBot', }, + { + name: 'Alby', + image: '/images/alby.png', + downloadText: 'Open Alby', + url: 'https://getalby.com', + imageStyle: { + width: '50px', + borderRadius: '5%', + }, + }, ]; export const Community = () => ( diff --git a/components/footer.js b/components/footer.js index c6de4e9..6ba6512 100644 --- a/components/footer.js +++ b/components/footer.js @@ -66,7 +66,11 @@ const FOOTER = [ { link: 'https://t.me/LightningTipBot', title: '@LightningTipBot' - }, + }, + { + link: 'https://getalby.com', + title: 'Alby' + }, ] }, { @@ -99,7 +103,11 @@ const FOOTER = [ { link: 'https://t.me/LightningTipBot', title: '@LightningTipBot' - }, + }, + { + link: 'https://getalby.com', + title: 'Alby' + }, ] }, ]; diff --git a/components/hero.js b/components/hero.js index e652f48..7fb14b8 100644 --- a/components/hero.js +++ b/components/hero.js @@ -253,6 +253,7 @@ export class Hero extends PureComponent { zebedee.io coinos.io ln.tips + getalby.com diff --git a/components/providers.js b/components/providers.js index d75f734..ce60d4b 100644 --- a/components/providers.js +++ b/components/providers.js @@ -204,6 +204,11 @@ const BTCPayImage = styled.img` align-self: center; `; +const AlbyImage = styled.img` + width: 50px; + border-radius: 5%; +`; + const Bold = styled.span` font-weight: 600; letter-spacing: -0.5px; @@ -299,6 +304,13 @@ export const Providers = () => ( Open Telegram + + + + you@getalby.com + + Open Alby + diff --git a/public/images/alby.png b/public/images/alby.png new file mode 100644 index 0000000..0d3093b Binary files /dev/null and b/public/images/alby.png differ