import * as _ from 'lodash';
import * as React from 'react';
import styled from 'styled-components';
import { colors } from 'ts/style/colors';
import { AboutPageLayout } from 'ts/components/aboutPageLayout';
import { DocumentTitle } from 'ts/components/document_title';
import { Column, Section } from 'ts/components/newLayout';
import { Heading, Paragraph } from 'ts/components/text';
import { WebsitePaths } from 'ts/types';
import { documentConstants } from 'ts/utils/document_meta_constants';
interface TeamMember {
name: string;
title: string;
imageUrl?: string;
}
const team: TeamMember[] = [
{
imageUrl: '/images/team/willw.jpg',
name: 'Will Warren',
title: 'Co-founder & CEO',
},
{
imageUrl: '/images/team/amirb.jpg',
name: 'Amir Bandeali',
title: 'Co-founder & CTO',
},
{
imageUrl: '/images/team/fabiob.jpg',
name: 'Fabio Berger',
title: 'Engineering Manager',
},
{
imageUrl: '/images/team/alexv.jpg',
name: 'Alex Xu',
title: 'Director of Operations',
},
{
imageUrl: '/images/team/benb.jpg',
name: 'Ben Burns',
title: 'Designer',
},
{
imageUrl: '/images/team/brandonm.jpg',
name: 'Brandon Millman',
title: 'Engineering Manager',
},
{
imageUrl: '/images/team/toms.jpg',
name: 'Tom Schmidt',
title: 'Product Lead',
},
{
imageUrl: '/images/team/jacobe.jpg',
name: 'Jacob Evans',
title: 'Ecosystem Engineer',
},
{
imageUrl: '/images/team/greg.jpg',
name: 'Greg Hysen',
title: 'Blockchain Engineer',
},
{
imageUrl: '/images/team/blake.jpg',
name: 'Blake Henderson',
title: 'Ecosystem Programs Lead',
},
{
imageUrl: '/images/team/zack.jpg',
name: 'Zack Skelly',
title: 'Head of Talent',
},
{
imageUrl: '/images/team/remcoB.jpg',
name: 'Remco Bloemen',
title: 'Technical Fellow',
},
{
imageUrl: '/images/team/francesco.jpg',
name: 'Francesco Agosti',
title: 'Engineer',
},
{
imageUrl: '/images/team/melo.jpg',
name: 'Mel Oberto',
title: 'People Operations Specialist',
},
{
imageUrl: '/images/team/chrisk.jpg',
name: 'Chris Kalani',
title: 'Director of Design',
},
{
imageUrl: '/images/team/alexb.jpg',
name: 'Alex Browne',
title: 'Senior Engineer',
},
{
imageUrl: '/images/team/peterz.jpg',
name: 'Peter Zeitz',
title: 'Research Fellow',
},
{
imageUrl: '/images/team/clayr.jpg',
name: 'Clay Robbins',
title: 'Ecosystem Development Lead',
},
{
imageUrl: '/images/team/mattt.jpg',
name: 'Matt Taylor',
title: 'Marketing Lead',
},
{
imageUrl: '/images/team/eugenea.jpg',
name: 'Eugene Aumson',
title: 'Engineer',
},
{
imageUrl: '/images/team/weijew.jpg',
name: 'Weijie Wu',
title: 'Research Fellow',
},
{
imageUrl: '/images/team/jasons.jpg',
name: 'Jason Somensatto',
title: 'Strategic Legal Counsel',
},
{
imageUrl: '/images/team/steve.jpg',
name: 'Steve Klebanoff',
title: 'Senior Engineer',
},
{
imageUrl: '/images/team/xiannyn.jpg',
name: 'Xianny Ng',
title: 'Engineer',
},
{
imageUrl: '/images/team/brento.jpg',
name: 'Brent Oshiro',
title: 'Community Engagement Lead',
},
{
imageUrl: '/images/team/marcs.jpg',
name: 'Marc Savino',
title: 'Technical Sourcer',
},
{
imageUrl: '/images/team/danielp.jpg',
name: 'Daniel Pyrathon',
title: 'Engineer',
},
{
imageUrl: '/images/team/lawrencef.jpg',
name: 'Lawrence Forman',
title: 'Engineer',
},
{
imageUrl: '/images/team/paulv.jpg',
name: 'Paul Vienhage',
title: 'Research Engineer',
},
{
imageUrl: '/images/team/ruiz.jpg',
name: 'Rui Zhang',
title: 'Corporate Counsel',
},
{
imageUrl: '/images/team/masonl.jpg',
name: 'Mason Liang',
title: 'Research Engineer',
},
{
imageUrl: '/images/team/patryka.jpg',
name: 'Patryk AdaĆ',
title: 'Designer',
},
{
imageUrl: '/images/team/alexk.jpg',
name: 'Alex Kroeger',
title: 'Data Scientist',
},
{
imageUrl: '/images/team/theog.jpg',
name: 'Theo Gonella',
title: 'Product Manager',
},
{
imageUrl: '/images/team/alext.jpg',
name: 'Alex Towle',
title: 'Engineer',
},
];
const advisors: TeamMember[] = [
{
imageUrl: '/images/team/advisors/frede.jpg',
name: 'Fred Ehrsam',
title: 'Paradigm',
},
{
imageUrl: '/images/team/advisors/olafc.jpg',
name: 'Olaf Carlson-Wee',
title: 'Polychain Capital',
},
{
imageUrl: '/images/team/advisors/joeyk.jpg',
name: 'Joey Krug',
title: 'Pantera Capital, Augur',
},
{
imageUrl: '/images/team/advisors/lindax.jpg',
name: 'Linda Xie',
title: 'Scalar Capital',
},
{
imageUrl: '/images/team/advisors/davids.jpg',
name: 'David Sacks',
title: 'Craft Ventures',
},
];
export const NextAboutTeam = () => (
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.
// tslint:disable-next-line:jsx-curly-spacing
}
linkLabel="Join the team"
to={WebsitePaths.AboutJobs}
>
0x Team
{_.map(team, (info: TeamMember, index: number) => (
))}
Advisors
{_.map(advisors, (info: TeamMember, index: number) => (
))}
);
const StyledGrid = styled.div`
&:after {
content: '';
clear: both;
}
`;
const Member = ({ name, title, imageUrl }: TeamMember) => (
{name}
{title}
);
const StyledMember = styled.div`
margin-bottom: 10px;
float: left;
width: calc(50% - 15px);
margin-right: 15px;
@media (max-width: 600px) {
&:nth-child(2n + 1) {
clear: left;
}
}
img,
svg {
width: 100%;
height: auto;
object-fit: contain;
margin-bottom: 10px;
}
@media (min-width: 600px) {
width: calc(33.3333% - 30px);
margin-right: 20px;
&:nth-child(3n + 1) {
clear: left;
}
}
@media (min-width: 900px) {
width: calc(25% - 30px);
&:nth-child(3n + 1) {
clear: none;
}
&:nth-child(4n + 1) {
clear: left;
}
}
`;
const Name = styled.h3`
color: ${colors.textDarkPrimary};
font-size: 14px;
line-height: 1;
margin: 0 0 3px 0;
`;
const MemberTitle = styled(Paragraph)`
font-size: 14px;
`;