aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/pages/landing.tsx
blob: 42834e528dcf033c929c78ab4859b217389653c6 (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
import * as _ from 'lodash';
import * as React from 'react';
import styled from 'styled-components';

import {colors} from 'ts/style/colors';

import {Button, ButtonWrap, Link} from 'ts/@next/components/button';
import {Icon, InlineIconWrap} from 'ts/@next/components/icon';
import {Column, Section, Wrap, WrapCentered, WrapGrid} from 'ts/@next/components/layout';
import {SiteWrap} from 'ts/@next/components/siteWrap';
import {Heading, Paragraph} from 'ts/@next/components/text';

import LogoOutlined from 'ts/@next/icons/illustrations/logo-outlined.svg';
import ProtocolIcon from 'ts/@next/icons/illustrations/protocol.svg';
import ReadyToBuildIcon from 'ts/@next/icons/illustrations/ready-to-build.svg';
import SupportIcon from 'ts/@next/icons/illustrations/support.svg';

interface ProjectLogo {
    name: string;
    imageUrl?: string;
}

const projects: ProjectLogo[] = [
    {
        name: 'Radar Relay',
        imageUrl: '/images/@next/relayer-logos/logo_1.png',
    },
    {
        name: 'Paradex',
        imageUrl: '/images/@next/relayer-logos/logo_5.png',
    },
    {
        name: 'Amadeus',
        imageUrl: '/images/@next/relayer-logos/logo_3.png',
    },
    {
        name: 'The Ocean X',
        imageUrl: '/images/@next/relayer-logos/logo_4.png',
    },
    {
        name: 'Paradex',
        imageUrl: '/images/@next/relayer-logos/logo_5.png',
    },
    {
        name: 'Decent EX',
        imageUrl: '/images/@next/relayer-logos/logo_2.1.png',
    },
    {
        name: 'dEX',
        imageUrl: '/images/@next/relayer-logos/logo_2.2.png',
    },
    {
        name: 'OpenRelay',
        imageUrl: '/images/@next/relayer-logos/logo_2.3.png',
    },
    {
        name: 'DDEX',
        imageUrl: '/images/@next/relayer-logos/logo_2.png',
    },
];

export const NextLanding: React.StatelessComponent<{}> = () => (
    <SiteWrap theme="dark">
        <Section>
            <Wrap>
                <Column colWidth="1/2">
                    <Heading size="large">
                        Powering Decentralized Exchange
                    </Heading>

                    <Paragraph size="medium" isMuted={true}>
                        0x is the best solution for adding<br />
                        exchange functionality to your business.
                    </Paragraph>

                    <ButtonWrap>
                        <Button isInline={true}>
                            Get Started
                        </Button>

                        <Button isTransparent={true} isInline={true}>
                            Learn More
                        </Button>
                    </ButtonWrap>
                </Column>

                <Column colWidth="1/2">
                    <WrapCentered>
                        <LogoOutlined/>
                    </WrapCentered>
                </Column>
            </Wrap>
        </Section>

        <Section bgColor={colors.backgroundDark} isPadLarge={true}>
            <WrapCentered width="narrow">
                <InlineIconWrap>
                    <Icon name="coin" size="small" />
                    <Icon name="coin" size="small" />
                    <Icon name="coin" size="small" />
                    <Icon name="coin" size="small" />
                </InlineIconWrap>

                <Paragraph
                    size="large"
                    isCentered={true}
                    padding={['large', 0, 'default', 0]}
                >
                    0x is an open protocol that enables the peer-to-peer exchange of Ethereum-based
                    tokens. Anyone in the world can use 0x to service a wide variety of markets
                    ranging from gaming items to financial instruments to assets that could have
                    near existed before.
                </Paragraph>

                <Button href="#" isTransparent={true}>
                    Discover how developers use 0x
                </Button>
            </WrapCentered>

            {/* Note you can also pass in a string "large/default" or a number for custom margins */}
            <Wrap padding={['large', 0, 0, 0]}>
                {/* NOTE: this probably should be withComponent as part of a <dl> */}
                <Column colWidth="1/3" isNoPadding={true}>
                    <Heading
                        size="medium"
                        isCentered={true}
                        isNoMargin={true}
                    >
                        873,435
                    </Heading>

                    <Paragraph
                        isMuted={0.4}
                        isCentered={true}
                        isNoMargin={true}
                    >
                        Number of transactions
                    </Paragraph>
                </Column>

                <Column colWidth="1/3" isNoPadding={true}>
                    <Heading
                        size="medium"
                        isCentered={true}
                        isNoMargin={true}
                    >
                        $203M
                    </Heading>

                    <Paragraph
                        isMuted={0.4}
                        isCentered={true}
                        isNoMargin={true}
                    >
                        Total volume
                    </Paragraph>
                </Column>

                <Column colWidth="1/3" isNoPadding={true}>
                    <Heading
                        size="medium"
                        isCentered={true}
                        isNoMargin={true}
                    >
                        227,372
                    </Heading>

                    <Paragraph
                        isMuted={0.4}
                        isCentered={true}
                        isNoMargin={true}
                    >
                        Number of relayers
                    </Paragraph>
                </Column>
            </Wrap>
        </Section>

        <Section isPadLarge={true}>
            <WrapCentered>
                <Heading size="small">You're in good company</Heading>
            </WrapCentered>

            <WrapGrid width="narrow" isWrapped={true}>
                {_.map(projects, (item: ProjectLogo, index) => (
                    <Project
                        key={index}
                        name={item.name}
                        imageUrl={item.imageUrl}
                    />
                ))}
            </WrapGrid>
        </Section>

        <Section>
            <Wrap>
                <Column
                    bgColor="#003831"
                    colWidth="1/2"
                    isPadLarge={true}
                >
                    <WrapCentered>
                        <ReadyToBuildIcon width="150" />

                        <Paragraph>
                            Ready to build on 0x?
                        </Paragraph>

                        <Link
                            href="#"
                            isTransparent={true}
                            isWithArrow={true}
                        >
                            Get Started
                        </Link>
                    </WrapCentered>
                </Column>

                <Column
                    bgColor="#003831"
                    colWidth="1/2"
                    isPadLarge={true}
                >
                    <WrapCentered>
                        <SupportIcon width="150" />

                        <Paragraph>
                            Want help from the 0x team?
                        </Paragraph>

                        <Link
                            href="#"
                            isTransparent={true}
                            isWithArrow={true}
                        >
                            Get in Touch
                        </Link>
                    </WrapCentered>
                </Column>
            </Wrap>
        </Section>
    </SiteWrap>
);

const Project = ({ name, imageUrl }: ProjectLogo) => (
    <StyledProject>
        <img src={imageUrl} alt={name} />
    </StyledProject>
);

const StyledProject = styled.div`
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    margin: 30px;

    img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }
`;