import styled from 'styled-components'; import { media } from '../utils'; const ProvidersModule = styled.div` display: flex; background: #fafafa; align-items: center; flex-direction: column; justify-content: center; padding: 60px 0 60px 0; border-top: 1px solid #eaeaea; ${media.tablet` min-height: 700px; padding: 120px 0 120px 0; `} `; const ProvidersInner = styled.div` display: flex; align-items: center; flex-direction: column; justify-content: center; ${media.largeTablet` max-width: 1000px; flex-direction: row; `} `; const ProvidersLeft = styled.div` padding-bottom: 60px; ${media.largeTablet` flex: 1; padding-bottom: 0; padding-right: 10px; `} `; const ProvidersRight = styled.div` ${media.largeTablet` flex: 1; `} `; const ProvidersRightInner = styled.div` ${media.largeTablet` padding-left: 100px; `} `; const ProvidersTitle = styled.div` margin: 0 auto; font-size: 30px; padding: 0 20px; max-width: 500px; font-weight: 800; line-height: 1.3; text-align: center; letter-spacing: -1px; ${media.largeTablet` text-align: left; `} ${media.tablet` padding: 0; `} `; const ProvidersDescription = styled.div` color: #666666; font-size: 16px; padding: 0 30px; line-height: 1.4; font-weight: 400; max-width: 800px; text-align: center; letter-spacing: -0.5px; margin: 20px auto 40px auto; ${media.largeTablet` text-align: left; `} ${media.tablet` padding: 0; font-size: 20px; line-height: 1.6; letter-spacing: -1px; margin: 20px auto 0 auto; `} `; const ProvidersDescriptionSmall = styled(ProvidersDescription)` ${media.tablet` font-size: 18px; `} `; const ProvidersEmailButton = styled.div` width: 65%; display: flex; cursor: pointer; background: #fff; padding: 0 1.5rem; margin: 15px auto 0 auto; border-radius: 7px; line-height: 2.8rem; flex-direction: row; align-items: center; justify-content: center; box-shadow: 0 4px 14px 0 rgb(0 0 0 / 10%); &:hover { background: rgba(255,255,255,0.9); box-shadow: 0 6px 20px rgb(93 93 93 / 23%); } ${media.tablet` width: 270px; margin: 15px 0 0 0; `} `; const ProvidersEmailButtonImage = styled.img` max-width: 60%; margin-left: -10px; `; const ProvidersEmailButtonText = styled.div` flex: 1; color: #696969; font-size: 20px; font-weight: 600; `; const ProviderCard = styled.div` margin: 20px auto 20px auto; display: flex; padding: 16px; min-height: 100px; border-radius: 6px; align-items: center; flex-direction: column; background-color: #fff; justify-content: center; box-shadow: 0px 30px 60px rgb(0 0 0 / 12%); ${media.tablet` width: 425px; height: 42px; margin: 20px 0; min-height: auto; flex-direction: row; justify-content: space-between; `} `; const ProviderSignUpButton = styled.a` color: #fff; width: 140px; height: 2.81rem; cursor: pointer; padding: 0 3.5rem; text-align: center; border-radius: 7px; margin: 15px 0 0 0; line-height: 2.8rem; text-decoration: none; background-color: #0070f3; box-shadow: 0 4px 14px 0 rgb(0 118 255 / 39%); &:hover { background: rgba(0,118,255,0.9); box-shadow: 0 6px 20px rgb(0 118 255 / 23%); } ${media.tablet` width: 120px; margin: 0 15px 0 0; `} `; const ZEBEDEEImage = styled.img` width: 130px; align-self: center; `; const Bold = styled.span` font-weight: 600; letter-spacing: -0.5px; `; export const Providers = () => ( Get a Lightning Address now! To get your own Lightning Address and start sending and receiving payments to user@address.com, choose from one of the options below. Download App Open Telegram Create Account Sign Up Your app doesn't support Lightning Addresses yet? If your favorite Bitcoin app doesn't yet support Lightning Address, get in touch with the developer company and ask them to learn about how the protocol can help their users.

To make things easier, we created an email template you can send with just a click.
window.open(`mailto:ENTER_DEVELOPER_EMAIL_HERE?subject=Introducing Lightning Address&body=Hi there,\n\n I just learnt about the Lightning Address protocol and how awesome it is for sending and receiving payments over the Bitcoin Lightning Network. I was hoping you would take a look at the lightningaddress.com website and possibly implement support for it? \n\n Lightning Addresses provide a familiar user experience with sending Lightning payments to other people online, similar to sending an email address. No more QR codes or invoices / addresses. "Just pay me at satoshi@website.com"\n\n Cheers!`)}> Send Email
)