Add @tom and @dekz while removing @PhABC

This commit is contained in:
Leonid Logvinov 2018-01-11 17:24:08 +01:00
parent b0b179550a
commit 94d29ab22e
No known key found for this signature in database
GPG Key ID: 0DD294BFDE8C95D4
2 changed files with 26 additions and 14 deletions

View File

@ -40,6 +40,9 @@ const teamRow1: ProfileInfo[] = [
github: 'https://github.com/fabioberger',
medium: 'https://medium.com/@fabioberger',
},
];
const teamRow2: ProfileInfo[] = [
{
name: 'Alex Xu',
title: 'Director of Operations',
@ -50,9 +53,6 @@ const teamRow1: ProfileInfo[] = [
github: '',
medium: '',
},
];
const teamRow2: ProfileInfo[] = [
{
name: 'Leonid Logvinov',
title: 'Engineer',
@ -73,16 +73,9 @@ const teamRow2: ProfileInfo[] = [
github: '',
medium: '',
},
{
name: 'Philippe Castonguay',
title: 'Dev Relations Manager',
description: `Developer relations. Previously computational neuroscience \
research at Janelia. Statistics at Western University. MA Dropout.`,
image: '/images/team/philippe.png',
linkedIn: '',
github: 'https://github.com/PhABC',
medium: '',
},
];
const teamRow3: ProfileInfo[] = [
{
name: 'Brandon Millman',
title: 'Senior Engineer',
@ -91,6 +84,24 @@ const teamRow2: ProfileInfo[] = [
image: '/images/team/brandon.png',
linkedIn: 'https://www.linkedin.com/company-beta/17942619/',
},
{
name: 'Tom Schmidt',
title: 'Product Manager',
description: `Previously engineering at Apple, product management at Facebook and Instagram. Computer Science at Stanford.`,
image: '/images/team/anyone.png',
linkedIn: 'https://www.linkedin.com/in/tomhschmidt/',
github: 'https://github.com/tomhschmidt',
medium: '',
},
{
name: 'Jacob Evans',
title: 'Blockchain Engineer',
description: `Previously software engineer at Qantas and RSA Security.`,
image: '/images/team/anyone.png',
linkedIn: 'https://www.linkedin.com/in/dekzter/',
github: 'https://github.com/dekz',
medium: '',
},
];
const advisors: ProfileInfo[] = [
@ -181,6 +192,7 @@ export class About extends React.Component<AboutProps, AboutState> {
<div className="pt3 md-px4 lg-px0">
<div className="clearfix pb3">{this._renderProfiles(teamRow1)}</div>
<div className="clearfix">{this._renderProfiles(teamRow2)}</div>
<div className="clearfix">{this._renderProfiles(teamRow3)}</div>
</div>
<div className="pt3 pb2">
<div

View File

@ -47,7 +47,7 @@ export function Profile(props: ProfileProps) {
<div style={{ minHeight: 60, lineHeight: 1.4 }} className="pt1 pb2 mx-auto lg-h6 md-h6 sm-h5 sm-center">
{props.profileInfo.description}
</div>
<div className="flex pb3 mx-auto sm-hide xs-hide" style={{ width: 180, opacity: 0.5 }}>
<div className="flex pb3 mx-auto sm-hide xs-hide" style={{ width: 280, opacity: 0.5 }}>
{renderSocialMediaIcons(props.profileInfo)}
</div>
</div>