diff options
author | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-11-29 00:27:05 +0800 |
---|---|---|
committer | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-11-29 00:29:12 +0800 |
commit | 38e12c240573dc7da0143809b29864bfa07a6c63 (patch) | |
tree | 290bf5ee70be7af76db946f626f9eb365823f588 /packages/website/ts/@next/pages/landing.tsx | |
parent | f9a7cc94e1af962ac16f87d5300047158428279e (diff) | |
download | dexon-sol-tools-38e12c240573dc7da0143809b29864bfa07a6c63.tar.gz dexon-sol-tools-38e12c240573dc7da0143809b29864bfa07a6c63.tar.zst dexon-sol-tools-38e12c240573dc7da0143809b29864bfa07a6c63.zip |
[WIP] Proposed layout modules
Diffstat (limited to 'packages/website/ts/@next/pages/landing.tsx')
-rw-r--r-- | packages/website/ts/@next/pages/landing.tsx | 47 |
1 files changed, 46 insertions, 1 deletions
diff --git a/packages/website/ts/@next/pages/landing.tsx b/packages/website/ts/@next/pages/landing.tsx index 64ef15274..709b77e76 100644 --- a/packages/website/ts/@next/pages/landing.tsx +++ b/packages/website/ts/@next/pages/landing.tsx @@ -1,9 +1,54 @@ import * as React from 'react'; import { SiteWrap } from 'ts/@next/components/siteWrap'; +import { Section, Wrap, Column } from 'ts/@next/components/layout'; export const NextLanding = () => ( <SiteWrap> - <div>Hello</div> + <Section> + <Wrap> + <Column colWidth="2/3"> + Powering Decentralized Exchange<br/> + Example of a 2/3 1/3 assymetric composition + </Column> + + <Column colWidth="1/3"> + RIGHT IMAGE + </Column> + </Wrap> + </Section> + + <Section bgColor="#003831"> + <Wrap + width="narrow"> + 0x is an open protocol that enables the peer-to-peer exchange of Ethereum-based tokens. Anyone can utilize 0x to service a wide variety of markets ranging from gaming items to traditional financial assets. + </Wrap> + + <Wrap> + <Column colWidth="1/3"> + This + </Column> + + <Column colWidth="1/3"> + is a + </Column> + + <Column colWidth="1/3"> + three-column module + </Column> + </Wrap> + </Section> + + <Section> + <Wrap> + <Column colWidth="1/2"> + This is a 2 COLUMN section + </Column> + + <Column colWidth="1/2"> + Again a 2 column section + </Column> + </Wrap> + </Section> </SiteWrap> ); |