aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/pages/about/jobs.tsx
blob: 111c89eae1f047e168a0eaa432827ba133283125 (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
import * as React from 'react';
import { Link as ReactRouterLink } from 'react-router-dom';
import styled from 'styled-components';

import { ChapterLink } from 'ts/@next/components/chapter_link';
import { Column, Section, Wrap } from 'ts/@next/components/layout';
import { SiteWrap } from 'ts/@next/components/siteWrap';
import { Heading, Paragraph } from 'ts/@next/components/text';

export const NextAboutJobs = () => (
  <SiteWrap theme="light">
    <Section>
      <Wrap>
         <Column colWidth="1/3">
            <ChapterLink to="/next/about/mission">Our Mission</ChapterLink>
            <ChapterLink to="/next/about/team">Team</ChapterLink>
            <ChapterLink to="/next/about/press">Press</ChapterLink>
            <ChapterLink to="/next/about/jobs">Jobs</ChapterLink>
        </Column>
        <Column colWidth="2/3">
            <Heading size="medium">
                Join Us in Our Mission
            </Heading>
            <Paragraph size="medium">
                To create a tokenized world where all value can flow freely.We are powering a growing ecosystem of decentralized applications and solving novel challenges to make our technology intuitive, flexible, and accessible to all. Read more about our mission, and join us in building financial infrastructure upon which the exchange of anything of value will take place.
            </Paragraph>
        </Column>
      </Wrap>
    </Section>

    <Section bgColor="#F3F6F4">
      <Wrap>
        <Column colWidth="1/3">
            <Heading size="medium">
                Powered by a Diverse Worldwide Community
            </Heading>
            <Paragraph>
                We're a highly technical team with varied backgrounds in engineering, science, business, finance, and research. While the core team is headquartered in San Francisco, there are 30+ teams building on 0x and hundreds of thousands of participants behind our efforts globally. We're passionate about open-source software and decentralized technology's potential to act as an equalizing force in the world.
            </Paragraph>
        </Column>

        <Column colWidth="2/3">
            <img src="/images/@next/jobs/map@2x.png" height="365" alt="Map of community"/>
        </Column>
      </Wrap>
    </Section>

    <Section>
      <Wrap>
        <Column colWidth="1/3">
            <Heading size="medium">Benefits</Heading>
        </Column>

        <Column colWidth="2/3">
            <Wrap>
                <Column>
                    <BenefitsList>
                        <li>Comprehensive Insurance</li>
                        <li>Unlimited Vacation</li>
                        <li>Meals and snacks provided daily</li>
                        <li>Flexible hours and liberal  work-from-home-policy</li>
                        <li>Supportive of remote working</li>
                        <li>Transportation, phone, and wellness expense</li>
                        <li>Relocation assistance</li>
                        <li>Optional team excursions</li>
                        <li>Competitive salary</li>
                        <li>Cryptocurrency based compensation</li>
                    </BenefitsList>
                </Column>
            </Wrap>
        </Column>
      </Wrap>
    </Section>

    <Section>
      <Wrap>
        <Column colWidth="1/3">
            <Heading size="medium">Current<br/>Openings</Heading>
        </Column>

        <Column colWidth="2/3">
            <Wrap>
                <Column colWidth="1/3">
                    <Heading size="small">Product Designer</Heading>
                </Column>
                <Column colWidth="1/3">
                    <Paragraph isMuted={true}>San Francisco, Remote</Paragraph>
                </Column>
                <Column colWidth="1/3">
                    <Paragraph><a href="#">Apply</a></Paragraph>
                </Column>
            </Wrap>
            <Wrap>
                <Column colWidth="1/3">
                    <Heading size="small">Open Positition</Heading>
                </Column>
                <Column colWidth="1/3">
                    <Paragraph isMuted={true}>
                        We're always interested in talking to talented people. Send us an application if you think you're the right fit.
                    </Paragraph>
                </Column>
                <Column colWidth="1/3">
                    <Paragraph><a href="#">Apply</a></Paragraph>
                </Column>
            </Wrap>
        </Column>
      </Wrap>
    </Section>
  </SiteWrap>
);

const BenefitsList = styled.ul`
    color: #000;
    list-style: disc;
    columns: auto 2;
    column-gap: 80px;

    li {
        margin-bottom: 1em;
    }
`;