aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorFred Carlsen <fred@sjelfull.no>2018-12-06 20:19:00 +0800
committerFred Carlsen <fred@sjelfull.no>2018-12-06 20:19:00 +0800
commit4b166828b89fe25be8aa8a004330b388df7e21df (patch)
treee9ae20b811e7c2db50bf9995d5f97134093b5b85 /packages
parentc1698aa634a2c73203708f83b050640d314e3066 (diff)
downloaddexon-sol-tools-4b166828b89fe25be8aa8a004330b388df7e21df.tar
dexon-sol-tools-4b166828b89fe25be8aa8a004330b388df7e21df.tar.gz
dexon-sol-tools-4b166828b89fe25be8aa8a004330b388df7e21df.tar.bz2
dexon-sol-tools-4b166828b89fe25be8aa8a004330b388df7e21df.tar.lz
dexon-sol-tools-4b166828b89fe25be8aa8a004330b388df7e21df.tar.xz
dexon-sol-tools-4b166828b89fe25be8aa8a004330b388df7e21df.tar.zst
dexon-sol-tools-4b166828b89fe25be8aa8a004330b388df7e21df.zip
Import configurator in new instant page
Diffstat (limited to 'packages')
-rw-r--r--packages/website/ts/@next/pages/instant.tsx18
1 files changed, 5 insertions, 13 deletions
diff --git a/packages/website/ts/@next/pages/instant.tsx b/packages/website/ts/@next/pages/instant.tsx
index 29975193d..ccc5da1e1 100644
--- a/packages/website/ts/@next/pages/instant.tsx
+++ b/packages/website/ts/@next/pages/instant.tsx
@@ -7,10 +7,14 @@ 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 { Configurator } from 'ts/pages/instant/configurator';
+
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';
+const CONFIGURATOR_HASH = 'configure';
+
export const Next0xInstant = () => (
<SiteWrap>
<Section>
@@ -76,19 +80,7 @@ export const Next0xInstant = () => (
<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>
+ <Configurator hash={CONFIGURATOR_HASH} />
</Wrap>
</Section>