diff options
author | Fred Carlsen <fred@sjelfull.no> | 2018-12-13 02:45:11 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-12-13 02:45:36 +0800 |
commit | 723dd2bcde0a3c8277be7a000657f4acde0dfa4e (patch) | |
tree | 40e9100024d2b3e8d8f1d50fbad9959195bd1ae6 /packages/website/ts/@next/pages/instant.tsx | |
parent | a900593c8803b3d8761044b2874b2ab4d3640e69 (diff) | |
download | dexon-sol-tools-723dd2bcde0a3c8277be7a000657f4acde0dfa4e.tar.gz dexon-sol-tools-723dd2bcde0a3c8277be7a000657f4acde0dfa4e.tar.zst dexon-sol-tools-723dd2bcde0a3c8277be7a000657f4acde0dfa4e.zip |
WIP configurator
Diffstat (limited to 'packages/website/ts/@next/pages/instant.tsx')
-rw-r--r-- | packages/website/ts/@next/pages/instant.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/website/ts/@next/pages/instant.tsx b/packages/website/ts/@next/pages/instant.tsx index 442aa0c8b..34dd83f1e 100644 --- a/packages/website/ts/@next/pages/instant.tsx +++ b/packages/website/ts/@next/pages/instant.tsx @@ -11,8 +11,8 @@ import {Button} from 'ts/@next/components/button'; import {Definition} from 'ts/@next/components/definition'; import {Section} from 'ts/@next/components/newLayout'; import {SiteWrap} from 'ts/@next/components/siteWrap'; -import {Paragraph} from 'ts/@next/components/text'; -// import { Configurator } from 'ts/pages/instant/configurator'; +import {Heading, Paragraph} from 'ts/@next/components/text'; +import { Configurator } from 'ts/@next/pages/instant/configurator'; const CONFIGURATOR_HASH = 'configure'; @@ -91,9 +91,9 @@ export const Next0xInstant = () => ( ))} </Section> - <Section bgColor={colors.backgroundDark}> - Configurator goes here - {/* <Configurator hash={CONFIGURATOR_HASH} /> */} + <Section maxWidth="1386px" padding="0 58px 70px" bgColor={colors.backgroundDark}> + <Heading>0x Instant Configurator</Heading> + <Configurator hash={CONFIGURATOR_HASH} /> </Section> <Banner |