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

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

import { Column, Section, Wrap, WrapGrid, WrapCentered } from 'ts/@next/components/layout';
import { SiteWrap } from 'ts/@next/components/siteWrap';
import { Heading, Paragraph } from 'ts/@next/components/text';
import { Image } from 'ts/@next/components/image';

import CoinIcon from 'ts/@next/icons/illustrations/coin.svg';
import ConsistentlyShipIcon from 'ts/@next/icons/illustrations/consistently-ship.svg';
import RightThingIcon from 'ts/@next/icons/illustrations/right-thing.svg';
import LongTermImpactIcon from 'ts/@next/icons/illustrations/long-term-impact.svg';

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: '#',
    },
];

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: '#',
    },
];

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>
);

export const NextAboutTeam = () => (
  <SiteWrap theme="light">
    <Section>
      <Wrap>
         <Column colWidth="1/3">
            <ChapterLink href="#">Our Mission</ChapterLink>
            <ChapterLink href="#">Team</ChapterLink>
            <ChapterLink href="#">Press</ChapterLink>
            <ChapterLink href="#">Jobs</ChapterLink>
        </Column>
        <Column colWidth="2/3">
            <Heading size="medium">We are a global, growing team</Heading>
            <Paragraph size="medium">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.</Paragraph>
            <Paragraph>Join the Team (arrow)</Paragraph>
        </Column>
      </Wrap>
    </Section>

    <Section>
      <Wrap>
        <Column colWidth="1/3">
            <Heading size="medium">0x Team</Heading>
        </Column>

        <Column colWidth="2/3">
            <Wrap isWrapped={true} isCentered={false}>
            {team.map((info, 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}>
            {team.map((info, index) => <Member key={`team-${index}`} name={info.name} title={info.title} />)}
        </Wrap>
        </Column>
      </Wrap>
    </Section>
  </SiteWrap>
);

const ChapterLink = styled.a`
    font-size: 1.222222222rem;
    display: block;
    opacity: 0.8;
    margin-bottom: 1.666666667rem;

    &:first-child {
        opacity: 1;
    }

    &:hover {
        opacity: 1;
    }
`;

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

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