aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/pages/instant.tsx
diff options
context:
space:
mode:
authorFred Carlsen <fred@sjelfull.no>2018-11-30 21:55:17 +0800
committerFred Carlsen <fred@sjelfull.no>2018-11-30 22:09:57 +0800
commit247a69aaec2c3389b7061d22fabc3bd15838cb75 (patch)
tree74b4e1284dfaa4d5803d0cab9f40d02acac960c9 /packages/website/ts/@next/pages/instant.tsx
parentd78ac3f1577d3d808c5824f9b47e00eb477335eb (diff)
downloaddexon-0x-contracts-247a69aaec2c3389b7061d22fabc3bd15838cb75.tar
dexon-0x-contracts-247a69aaec2c3389b7061d22fabc3bd15838cb75.tar.gz
dexon-0x-contracts-247a69aaec2c3389b7061d22fabc3bd15838cb75.tar.bz2
dexon-0x-contracts-247a69aaec2c3389b7061d22fabc3bd15838cb75.tar.lz
dexon-0x-contracts-247a69aaec2c3389b7061d22fabc3bd15838cb75.tar.xz
dexon-0x-contracts-247a69aaec2c3389b7061d22fabc3bd15838cb75.tar.zst
dexon-0x-contracts-247a69aaec2c3389b7061d22fabc3bd15838cb75.zip
Added 0x instant skeleton
Diffstat (limited to 'packages/website/ts/@next/pages/instant.tsx')
-rw-r--r--packages/website/ts/@next/pages/instant.tsx122
1 files changed, 122 insertions, 0 deletions
diff --git a/packages/website/ts/@next/pages/instant.tsx b/packages/website/ts/@next/pages/instant.tsx
new file mode 100644
index 000000000..4c8fa5a30
--- /dev/null
+++ b/packages/website/ts/@next/pages/instant.tsx
@@ -0,0 +1,122 @@
+import * as React from 'react';
+import styled from 'styled-components';
+
+import {colors} from 'ts/style/colors';
+
+import {Button} from 'ts/@next/components/button';
+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';
+
+export const Next0xInstant = () => (
+ <SiteWrap>
+ <Section>
+ <WrapCentered>
+ <Column colWidth="2/3">
+ <Heading size="medium" center>Introducing 0x Instant</Heading>
+ <Paragraph size="medium" center>A free and flexible way to offer simple crypto purchasing in any app or website</Paragraph>
+ <Button href="#">Get Started</Button>
+ </Column>
+ </WrapCentered>
+ </Section>
+
+ <Section fullWidth noPadding>
+ <Wrap width="full">
+ <img src="/images/@next/0x-instant/0x-instant-widgets@2x.png" alt="Preview of payment widgets"/>
+ </Wrap>
+ </Section>
+
+ <Section>
+ <Wrap>
+ <Column colWidth="1/3">
+ <TokensIcon width="248"/>
+ </Column>
+
+ <Column colWidth="2/3">
+ <Heading>Support ERC-20 and ERC-721 tokens</Heading>
+ <Paragraph muted>Seamlessly integrate token purchasing into your product experience by offering digital assets ranging from in-game items to stablecoins.</Paragraph>
+ <div>
+ <a href="#">Get Started</a><a href="#">Explore the Docs</a>
+ </div>
+ </Column>
+ </Wrap>
+ </Section>
+ <Section>
+ <Wrap>
+ <Column colWidth="1/3">
+ <ProtocolIcon width="248"/>
+ </Column>
+
+ <Column colWidth="2/3">
+ <Heading>Generate revenue for your business</Heading>
+ <Paragraph muted>With just a few lines of code, you can earn up to 5% in affiliate fees on every transaction from your crypto wallet or dApp.</Paragraph>
+ <div>
+ <a href="#">Learn more about affiliate fees</a>
+ </div>
+ </Column>
+ </Wrap>
+ </Section>
+ <Section>
+ <Wrap>
+ <Column colWidth="1/3">
+ <LogoOutlined width="248"/>
+ </Column>
+
+ <Column colWidth="2/3">
+ <Heading>Easy and flexible integration</Heading>
+ <Paragraph muted>Use our out-of-the-box design or customize the user interface by integrating the AssetBuyer engine. You can also tap into 0x networked liquidity or choose your own liquidity pool.</Paragraph>
+ <div>
+ <a href="#">Explore AssetBuyer</a>
+ <a href="#">Learn about liquidity</a>
+ </div>
+ </Column>
+ </Wrap>
+ </Section>
+
+ <Section bgColor={colors.backgroundDark}>
+ <Wrap>
+ <Column colWidth="1/2">
+ <Heading>0x Instant Configurator</Heading>
+ <Paragraph>Liquidity Source</Paragraph>
+ <Paragraph>What tokens can users buy? (select all)</Paragraph>
+ <Paragraph>Transaction fee ETH address</Paragraph>
+ <Paragraph>Fee Percentage</Paragraph>
+ </Column>
+
+ <Column colWidth="1/2">
+ <Paragraph>Code Snippet</Paragraph>
+ <a href="#">Explore the Docs</a>
+ <Paragraph>&lt;code snippet&gt;</Paragraph>
+ </Column>
+ </Wrap>
+ </Section>
+
+ <Section>
+ <Wrap width="full">
+ <Column>
+ <Paragraph size="small" muted="0.5">Disclaimer: The laws and regulations applicable to the use and exchange of digital assets and blockchain-native tokens, including through any software developed using the licensed work created by ZeroEx Intl. (the “Work”), vary by jurisdiction. As set forth in the Apache License, Version 2.0 applicable to the Work, developers are “solely responsible for determining the appropriateness of using or redistributing the Work,” which includes responsibility for ensuring compliance with any such applicable laws and regulations.</Paragraph>
+ <Paragraph size="small" muted="0.5">See the Apache License, Version 2.0 for the specific language governing all applicable permissions and limitations.</Paragraph>
+ </Column>
+ </Wrap>
+ </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;
+ }
+`;