aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/pages/instant.tsx
diff options
context:
space:
mode:
authorEzekiel Aquino <ezekiel@bakkenbaeck.no>2018-12-04 21:58:37 +0800
committerEzekiel Aquino <ezekiel@bakkenbaeck.no>2018-12-04 21:58:37 +0800
commit4da419cf7591a8beb32fb5e41e31b129c5fbb99f (patch)
tree54ba3d9bc3940f526b02962967e7b65eb151f206 /packages/website/ts/@next/pages/instant.tsx
parent5bf7b9b8f3fb2780e56cb11fa9b9b48939a8041d (diff)
downloaddexon-0x-contracts-4da419cf7591a8beb32fb5e41e31b129c5fbb99f.tar
dexon-0x-contracts-4da419cf7591a8beb32fb5e41e31b129c5fbb99f.tar.gz
dexon-0x-contracts-4da419cf7591a8beb32fb5e41e31b129c5fbb99f.tar.bz2
dexon-0x-contracts-4da419cf7591a8beb32fb5e41e31b129c5fbb99f.tar.lz
dexon-0x-contracts-4da419cf7591a8beb32fb5e41e31b129c5fbb99f.tar.xz
dexon-0x-contracts-4da419cf7591a8beb32fb5e41e31b129c5fbb99f.tar.zst
dexon-0x-contracts-4da419cf7591a8beb32fb5e41e31b129c5fbb99f.zip
Fixes all lint issues, cleanup
Diffstat (limited to 'packages/website/ts/@next/pages/instant.tsx')
-rw-r--r--packages/website/ts/@next/pages/instant.tsx24
1 files changed, 3 insertions, 21 deletions
diff --git a/packages/website/ts/@next/pages/instant.tsx b/packages/website/ts/@next/pages/instant.tsx
index a8707cdd7..29975193d 100644
--- a/packages/website/ts/@next/pages/instant.tsx
+++ b/packages/website/ts/@next/pages/instant.tsx
@@ -1,5 +1,4 @@
import * as React from 'react';
-import styled from 'styled-components';
import {colors} from 'ts/style/colors';
@@ -8,9 +7,9 @@ import {Column, Section, Wrap, WrapCentered} from 'ts/@next/components/layout';
import {SiteWrap} from 'ts/@next/components/siteWrap';
import {Heading, Paragraph} from 'ts/@next/components/text';
-import TokensIcon from 'ts/@next/icons/illustrations/tokens.svg';
import LogoOutlined from 'ts/@next/icons/illustrations/logo-outlined.svg';
import ProtocolIcon from 'ts/@next/icons/illustrations/protocol.svg';
+import TokensIcon from 'ts/@next/icons/illustrations/tokens.svg';
export const Next0xInstant = () => (
<SiteWrap>
@@ -22,9 +21,7 @@ export const Next0xInstant = () => (
</WrapCentered>
</Section>
- <Section
- isFullWidth={true}
- isNoPadding={true}>
+ <Section isFullWidth={true} isNoPadding={true}>
<Wrap width="full">
<img src="/images/@next/0x-instant/0x-instant-widgets@2x.png" alt="Preview of payment widgets"/>
</Wrap>
@@ -108,7 +105,7 @@ export const Next0xInstant = () => (
<WrapCentered>
<div>
<Button href="#">Explore the Docs</Button>
- <Button href="#" transparent>Get in Touch</Button>
+ <Button href="#" isTransparent={true}>Get in Touch</Button>
</div>
</WrapCentered>
</Column>
@@ -125,18 +122,3 @@ export const Next0xInstant = () => (
</Section>
</SiteWrap>
);
-
-const ChapterLink = styled.a `
- font-size: 1.222222222rem;
- display: block;
- opacity: 0.8;
- margin-bottom: 1.666666667rem;
-
- &:first-child {
- opacity: 1;
- }
-
- &:hover {
- opacity: 1;
- }
-`;