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

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

import { AboutPageLayout } from 'ts/@next/components/aboutPageLayout';
import { Column, Section, Wrap } from 'ts/@next/components/layout';
import { Heading, Paragraph } from 'ts/@next/components/text';

interface TeamMember {
    name: string;
    title: string;
    imageUrl?: string;
}

const team: TeamMember[] = [
    {
        name: 'Will Warren',
        title: 'Co-Founder and CEO',
        imageUrl: '#',
    },
    {
        name: 'Will Warren',
        title: 'Co-Founder and CEO',
        imageUrl: '#',
    },
    {
        name: 'Will Warren',
        title: 'Co-Founder and CEO',
        imageUrl: '#',
    },
    {
        name: 'Will Warren',
        title: 'Co-Founder and CEO',
        imageUrl: '#',
    },
    {
        name: 'Will Warren',
        title: 'Co-Founder and CEO',
        imageUrl: '#',
    },
    {
        name: 'Will Warren',
        title: 'Co-Founder and CEO',
        imageUrl: '#',
    },
    {
        name: 'Will Warren',
        title: 'Co-Founder and CEO',
        imageUrl: '#',
    },
    {
        name: 'Will Warren',
        title: 'Co-Founder and CEO',
        imageUrl: '#',
    },
    {
        name: 'Will Warren',
        title: 'Co-Founder and CEO',
        imageUrl: '#',
    },
    {
        name: 'Will Warren',
        title: 'Co-Founder and CEO',
        imageUrl: '#',
    },
    {
        name: 'Will Warren',
        title: 'Co-Founder and CEO',
        imageUrl: '#',
    },
    {
        name: 'Will Warren',
        title: 'Co-Founder and CEO',
        imageUrl: '#',
    },
    {
        name: 'Will Warren',
        title: 'Co-Founder and CEO',
        imageUrl: '#',
    },
    {
        name: 'Will Warren',
        title: 'Co-Founder and CEO',
        imageUrl: '#',
    },
    {
        name: 'Will Warren',
        title: 'Co-Founder and CEO',
        imageUrl: '#',
    },
    {
        name: 'Will Warren',
        title: 'Co-Founder and CEO',
        imageUrl: '#',
    },
];

const advisors: TeamMember[] = [
    {
        name: 'Will Warren',
        title: 'Co-Founder and CEO',
        imageUrl: '#',
    },
    {
        name: 'Will Warren',
        title: 'Co-Founder and CEO',
        imageUrl: '#',
    },
    {
        name: 'Will Warren',
        title: 'Co-Founder and CEO',
        imageUrl: '#',
    },
    {
        name: 'Will Warren',
        title: 'Co-Founder and CEO',
        imageUrl: '#',
    },
    {
        name: 'Will Warren',
        title: 'Co-Founder and CEO',
        imageUrl: '#',
    },
    {
        name: 'Will Warren',
        title: 'Co-Founder and CEO',
        imageUrl: '#',
    },
    {
        name: 'Will Warren',
        title: 'Co-Founder and CEO',
        imageUrl: '#',
    },
    {
        name: 'Will Warren',
        title: 'Co-Founder and CEO',
        imageUrl: '#',
    },
];

export const NextAboutTeam = () => (
    <AboutPageLayout
        title="We are a global, growing team"
        description="We are a distributed team with backgrounds in engineering, academic research, business, and design. The 0x Core Team is passionate about accelerating the adoption decentralized technology and believe in its potential to be an equalizing force in the world. Join us and do the most impactful work of your life."
        linkLabel="Join the team"
        linkUrl="/jobs"
    >
        <Section>
            <Wrap>
                <Column colWidth="1/3">
                    <Heading size="medium">0x Team</Heading>
                </Column>

                <Column colWidth="2/3">
                    <Wrap isWrapped={true} isCentered={false}>
                        {_.map(team, (info: TeamMember, index) => (
                            <Member key={`team-${index}`} name={info.name} title={info.title} />
                        ))}
                    </Wrap>
                </Column>
            </Wrap>
        </Section>

        <Section bgColor="#F3F6F4">
            <Wrap>
                <Column colWidth="1/3">
                    <Heading size="medium">Advisors</Heading>
                </Column>

                <Column colWidth="2/3">
                    <Wrap isWrapped={true} isCentered={false}>
                        {_.map(advisors, (info: TeamMember, index) => (
                            <Member key={`team-${index}`} name={info.name} title={info.title} />
                        ))}
                    </Wrap>
                </Column>
            </Wrap>
        </Section>
    </AboutPageLayout>
);

const Member = ({ name, title, imageUrl }: TeamMember) => (
    <StyledMember>
        <svg width="184" height="184" viewBox="0 0 184 184" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="184" height="184" fill="#003831"/></svg>
        <Heading color={colors.textDarkPrimary} size="small" isNoMargin={true}>{name}</Heading>
        <Paragraph isMuted={0.5}>{title}</Paragraph>
    </StyledMember>
);

const StyledMember = styled.div`
    width: calc(25% - 10px);
    margin-bottom: 10px;

    img, svg {
        width: 100%;
        height: auto;
        object-fit: contain;
        margin-bottom: 10px;
    }
`;