blob: e3c1cc74076113e2162faccb31696df45fb6db97 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
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>
<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 noPadding>
<Wrap width="full">
<Column colWidth="2/3">
SAMPLE FLUSHED width
</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>
);
|