aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/components/sections/landing/about.tsx
blob: 75c7623e89008e7ba6b7b755a9cb028a0751bef4 (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
import * as React from 'react';
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 {Heading, Paragraph} from 'ts/@next/components/text';
import {colors} from 'ts/style/colors';

export const SectionLandingAbout = () => (
    <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>

            <Link
                href="#"
                isTransparent={true}
                isWithArrow={true}
                isAccentColor={true}
            >
                Discover how developers use 0x
            </Link>

            <hr
                style={{
                    width: '340px',
                    borderColor: '#3C4746',
                    margin: '60px auto 0 auto',
                }}
            />
        </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>
);