Files
lightning-address/pages/index.js
Andre Neves 23fd830a7f chore: readme and docs
feature: responsiveness
2021-08-05 14:58:19 -04:00

52 lines
1.3 KiB
JavaScript

import styled from 'styled-components';
import Head from 'next/head';
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="An Internet Identifier that allows anyone to send you Bitcoin over the Lightning Network. No scanning QR codes or pasting invoices. Like an email address, but for money."
/>
<meta
property="og:image"
content="https://i.imgur.com/uwHlWPC.png"
/>
</Head>
<Wrapper>
<Hero />
<Benefits />
<Paths />
<Providers />
<Footer />
</Wrapper>
</>
);
}