mirror of
https://github.com/aljazceru/lightning-address.git
synced 2025-12-17 05:14:22 +01:00
chore: hotfix copy and link changes
This commit is contained in:
@@ -204,7 +204,7 @@ const BENEFITS = [
|
||||
},
|
||||
{
|
||||
title: 'Familiar Experience',
|
||||
description: 'Like an email address but for your email! You can now have the exact same flow to send money as you have when sending an email message to a friend. A familiar user experience allowing everyone to participate.',
|
||||
description: 'Like an email address but for your money! You can now have the exact same flow to send money as you have when sending an email message to a friend. A familiar user experience allowing everyone to participate.',
|
||||
image: '/images/bitcoin2.svg'
|
||||
},
|
||||
{
|
||||
|
||||
@@ -167,7 +167,7 @@ const IMPLEMENTATIONS = [
|
||||
description: 'Lightning Address is just a set of simple protocol instructions, you can roll everything on your own. Whether you are a service provider looking to support Lightning Addresses or a user that wants to host your own setup, this option is for you.',
|
||||
image: '/images/data2.svg',
|
||||
linkText: 'Read More',
|
||||
link: 'https://google.com',
|
||||
link: 'https://github.com/andrerfneves/lightning-address/blob/master/DIY.md',
|
||||
isSecondary: true
|
||||
},
|
||||
];
|
||||
|
||||
@@ -180,9 +180,10 @@ const ProviderSignUpButton = styled.a`
|
||||
text-decoration: none;
|
||||
background-color: #0070f3;
|
||||
box-shadow: 0 4px 14px 0 rgb(0 118 255 / 39%);
|
||||
opacity: ${({ isDisabled }) => isDisabled ? '0.5' : '1'};
|
||||
|
||||
&:hover {
|
||||
background: rgba(0,118,255,0.9);
|
||||
background: ${({ isDisabled }) => isDisabled ? '#0070f3' : 'rgba(0,118,255,0.9)'};
|
||||
box-shadow: 0 6px 20px rgb(0 118 255 / 23%);
|
||||
}
|
||||
|
||||
@@ -255,7 +256,7 @@ export const Providers = () => (
|
||||
<ZEBEDEEImage src={'/images/coinos.png'} alt="coinos" style={{ marginBottom: '-8px' }} />
|
||||
<DomainURL>you@coinos.io</DomainURL>
|
||||
</ImageWrapper>
|
||||
<ProviderSignUpButton target="_blank" href="https://coinos.io">Sign Up</ProviderSignUpButton>
|
||||
<ProviderSignUpButton isDisabled>Coming Soon</ProviderSignUpButton>
|
||||
</ProviderCard>
|
||||
</ProvidersLeft>
|
||||
<ProvidersRight>
|
||||
|
||||
Reference in New Issue
Block a user