aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/pages/about/mission.tsx
blob: f8b01dc08b9b5a8fbebe5d7eaded73fa1e513205 (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
import * as _ from 'lodash';
import * as React from 'react';

import { AboutPageLayout } from 'ts/@next/components/aboutPageLayout';
import { Icon } from 'ts/@next/components/icon';
import { Image } from 'ts/@next/components/image';
import { Column, Section, Wrap } from 'ts/@next/components/layout';
import { Separator } from 'ts/@next/components/separator';
import { Heading, Paragraph } from 'ts/@next/components/text';

const values = [
    {
        title: 'Do The Right Thing',
        description: 'We acknowledge the broad subjectivity behind doing “the right thing,” and are committed to rigorously exploring its nuance in our decision making. We believe this responsibility drives our decision making above all else, and pledge to act in the best interest of our peers, community, and society as a whole.',
        icon: 'right-thing',
    },
    {
        title: 'Consistently Ship',
        description: 'Achieving our mission requires dedication and diligence. We aspire to be an organization that consistently ships. We set high-impact goals that are rooted in data and pride ourselves in consistently outputting outstanding results across the organization.',
        icon: 'consistently-ship',
    },
    {
        title: 'Focus on long-term Impact',
        description: 'We anticipate that over time, awareness of the fundamentally disruptive nature of frictionless global exchange will cause some to see this technology as a threat. There will be setbacks, some will claim that this technology is too disruptive, and we will face adversity. Persistence and a healthy long-term focus will see us through these battles.',
        icon: 'long-term-impact',
    },
];

export const NextAboutMission = () => (
    <AboutPageLayout
        title="Creating a tokenized world where all value can flow freely."
        description="0x Protocol is an important infrastructure layer for the emerging crypto economy and enables markets to be created that couldn't have existed before. As more assets become tokenized, public blockchains provide the opportunity to establish a new financial stack that is more efficient, transparent, and equitable than any system in the past."
    >
        <Section isFullWidth={true} isNoPadding={true}>
            <Wrap width="full">
                <Image
                    src="/images/@next/about/about-mission@2x.jpg"
                    height="372"
                    alt=""
                    isCentered={true}
                />
            </Wrap>
        </Section>

        <Section isPadLarge={true}>
            <Wrap>
                <Column colWidth="1/3">
                    <Heading size="medium">Core Values</Heading>
                </Column>

                <Column colWidth="2/3" isNoPadding={true}>
                    {_.map(values, (item, index) => (
                        <>
                            <Wrap>
                                <Column colWidth="1/4">
                                    <Icon name={item.icon} size={120} />
                                </Column>

                                <Column colWidth="2/3">
                                    <Heading>
                                        {item.title}
                                    </Heading>
                                    <Paragraph isMuted={true}>
                                        {item.description}
                                    </Paragraph>
                                </Column>
                            </Wrap>

                            {(index < values.length - 1) && <Separator/>}
                        </>
                    ))}
                </Column>
            </Wrap>
        </Section>
    </AboutPageLayout>
);