mirror of
https://github.com/aljazceru/lightning-address.git
synced 2025-12-17 13:24:22 +01:00
Add Alby to all applicable parts of the site
This commit is contained in:
@@ -39,6 +39,7 @@ _Bitcoin Lightning wallets that support sending and receiving to **Lightning Add
|
|||||||
| [SBW](https://lightning-wallet.com/) | ☑️ | ---- |
|
| [SBW](https://lightning-wallet.com/) | ☑️ | ---- |
|
||||||
| [ZEBEDEE](https://zebedee.io/wallet) (and [Bots](https://zebedee.io/bots/), and [Extensions](https://zebedee.io/wallet)) | ☑️ | ☑️ |
|
| [ZEBEDEE](https://zebedee.io/wallet) (and [Bots](https://zebedee.io/bots/), and [Extensions](https://zebedee.io/wallet)) | ☑️ | ☑️ |
|
||||||
| [Zeus](https://github.com/ZeusLN/zeus) | ☑️ | ---- |
|
| [Zeus](https://github.com/ZeusLN/zeus) | ☑️ | ---- |
|
||||||
|
| [Alby](https://getalby.com) | ☑️ | ☑️ |
|
||||||
|
|
||||||
## TLDR
|
## TLDR
|
||||||
|
|
||||||
|
|||||||
@@ -348,6 +348,10 @@ const SATDRESS_SERVERS = [
|
|||||||
urlLink: 'https://tinytip.me',
|
urlLink: 'https://tinytip.me',
|
||||||
urlText: '@tinytip.me',
|
urlText: '@tinytip.me',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
urlLink: 'https://getalby.com',
|
||||||
|
urlText: '@getalby.com',
|
||||||
|
},
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -445,6 +449,16 @@ const WALLETS = [
|
|||||||
downloadText: 'Open @LightningTipBot',
|
downloadText: 'Open @LightningTipBot',
|
||||||
url: 'https://t.me/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 = () => (
|
export const Community = () => (
|
||||||
|
|||||||
@@ -67,6 +67,10 @@ const FOOTER = [
|
|||||||
link: 'https://t.me/LightningTipBot',
|
link: 'https://t.me/LightningTipBot',
|
||||||
title: '@LightningTipBot'
|
title: '@LightningTipBot'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
link: 'https://getalby.com',
|
||||||
|
title: 'Alby'
|
||||||
|
},
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -100,6 +104,10 @@ const FOOTER = [
|
|||||||
link: 'https://t.me/LightningTipBot',
|
link: 'https://t.me/LightningTipBot',
|
||||||
title: '@LightningTipBot'
|
title: '@LightningTipBot'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
link: 'https://getalby.com',
|
||||||
|
title: 'Alby'
|
||||||
|
},
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -253,6 +253,7 @@ export class Hero extends PureComponent {
|
|||||||
<LoopedTextPart>zebedee.io</LoopedTextPart>
|
<LoopedTextPart>zebedee.io</LoopedTextPart>
|
||||||
<LoopedTextPart>coinos.io</LoopedTextPart>
|
<LoopedTextPart>coinos.io</LoopedTextPart>
|
||||||
<LoopedTextPart>ln.tips</LoopedTextPart>
|
<LoopedTextPart>ln.tips</LoopedTextPart>
|
||||||
|
<LoopedTextPart>getalby.com</LoopedTextPart>
|
||||||
</TextLoop>
|
</TextLoop>
|
||||||
</LoopWrapper>
|
</LoopWrapper>
|
||||||
</Fade>
|
</Fade>
|
||||||
|
|||||||
@@ -204,6 +204,11 @@ const BTCPayImage = styled.img`
|
|||||||
align-self: center;
|
align-self: center;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
const AlbyImage = styled.img`
|
||||||
|
width: 50px;
|
||||||
|
border-radius: 5%;
|
||||||
|
`;
|
||||||
|
|
||||||
const Bold = styled.span`
|
const Bold = styled.span`
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
letter-spacing: -0.5px;
|
letter-spacing: -0.5px;
|
||||||
@@ -299,6 +304,13 @@ export const Providers = () => (
|
|||||||
</ImageWrapper>
|
</ImageWrapper>
|
||||||
<ProviderSignUpButton target="_blank" href="https://t.me/LightningTipBot">Open Telegram</ProviderSignUpButton>
|
<ProviderSignUpButton target="_blank" href="https://t.me/LightningTipBot">Open Telegram</ProviderSignUpButton>
|
||||||
</ProviderCard>
|
</ProviderCard>
|
||||||
|
<ProviderCard>
|
||||||
|
<ImageWrapper>
|
||||||
|
<AlbyImage src={'/images/alby.png'} alt="Alby" />
|
||||||
|
<DomainURL>you@getalby.com</DomainURL>
|
||||||
|
</ImageWrapper>
|
||||||
|
<ProviderSignUpButton target="_blank" href="https://getalby.com">Open Alby</ProviderSignUpButton>
|
||||||
|
</ProviderCard>
|
||||||
<ProviderCard>
|
<ProviderCard>
|
||||||
<ImageWrapper>
|
<ImageWrapper>
|
||||||
<BTCPayImage src={'/images/noah.svg'} alt="Noah" style={{ width: '115px' }} />
|
<BTCPayImage src={'/images/noah.svg'} alt="Noah" style={{ width: '115px' }} />
|
||||||
|
|||||||
BIN
public/images/alby.png
Normal file
BIN
public/images/alby.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.8 KiB |
Reference in New Issue
Block a user