Files
lightning-address/pages/index.js
2021-09-06 19:38:24 -04:00

63 lines
2.1 KiB
JavaScript

import styled from 'styled-components';
import Head from 'next/head';
import { Community } from '../components/community';
import { Providers } from '../components/providers';
import { Benefits } from '../components/benefits';
import { Footer } from '../components/footer';
import { Paths } from '../components/paths';
import { Hero } from '../components/hero';
const Wrapper = styled.div`
display: flex;
flex-direction: column;
`;
export default function Home() {
return (
<>
<Head>
<title>The Lightning Address</title>
<link rel="icon" type="image/png" href="https://i.imgur.com/4yaPtA2.png" />
<meta
property="og:title"
content="The Lightning Address"
/>
<meta
property="og:type"
content="website"
/>
<meta
property="og:url"
content="https://lightningaddress.com"
/>
<meta
property="og:description"
content="Like an email address, but for your Bitcoin. An Internet Identifier that allows anyone to send you Bitcoin instantly over the Lightning Network. No scanning QR codes or pasting invoices."
/>
<meta
property="og:image"
content="https://i.imgur.com/wL4cC1t.png"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@andreneves" />
<meta name="twitter:creator" content="@andreneves" />
<meta name="twitter:title" content="The Lightning Address" />
<meta name="twitter:description" content="Like an email address, but for your Bitcoin. A massively simpler way for anyone to send you Bitcoin instantly on the Lightning Network. No scanning QR codes or pasting invoices." />
<meta name="twitter:image" content="https://i.imgur.com/wL4cC1t.png" />
<script defer data-domain="lightningaddress.com" src="https://plausible.io/js/plausible.js" />
</Head>
<Wrapper>
<Hero />
<Benefits />
<Paths />
<Providers />
<Community />
<Footer />
</Wrapper>
</>
);
}