aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/components/sections/landing/about.tsx
blob: 7b51b0d13fd7c887ef1d8f37f85d719ef3f3fa4a (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
import * as React from 'react';
import styled from 'styled-components';

import { Button } from 'ts/@next/components/button';
import { Icon, InlineIconWrap } from 'ts/@next/components/icon';
import { Column, FlexWrap, Section } from 'ts/@next/components/newLayout';
import { Paragraph } from 'ts/@next/components/text';
import { WebsitePaths } from 'ts/types';

interface FigureProps {
    value: string;
    description: string;
}

export const SectionLandingAbout = () => (
    <Section bgColor="dark" isTextCentered={true}>
        <InlineIconWrap>
            <Icon name="descriptionCoin" size="small" />
            <Icon name="descriptionCopy" size="small" />
            <Icon name="descriptionFlask" size="small" />
            <Icon name="descriptionBolt" size="small" />
        </InlineIconWrap>

        <Paragraph size="large" isCentered={true} isMuted={1} padding={['large', 0, 'default', 0]}>
            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 never existed before.
        </Paragraph>

        <DeveloperLink href={`${WebsitePaths.Why}#cases`} isWithArrow={true} isAccentColor={true}>
            Discover how developers use 0x
        </DeveloperLink>

        <hr
            style={{
                width: '100%',
                maxWidth: '340px',
                borderColor: '#3C4746',
                margin: '60px auto',
            }}
        />

        <FlexWrap as="dl">
            <Figure value="353K" description="Total Transactions" />

            <Figure value="$447M" description="Total Volume" />

            <Figure value="30+" description="Total Projects" />
        </FlexWrap>
    </Section>
);

const Figure = (props: FigureProps) => (
    <Column padding="0 30px">
        <FigureValue>{props.value}</FigureValue>
        <FigureDescription>{props.description}</FigureDescription>
    </Column>
);

const DeveloperLink = styled(Button)`
    @media (max-width: 500px) {
        && {
            white-space: pre-wrap;
            line-height: 1.3;
        }
    }
`;

const FigureValue = styled.dt`
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 15px;

    @media (max-width: 768px) {
        font-size: 40px;
    }
`;

const FigureDescription = styled.dd`
    font-size: 18px;
    color: #999999;
`;