Merge pull request #317 from 0xProject/feature/new-team-members
[WIP] Add @tom and @dekz while removing @PhABC
This commit is contained in:
5
packages/website/CHANGELOG.md
Normal file
5
packages/website/CHANGELOG.md
Normal file
@@ -0,0 +1,5 @@
|
||||
# CHANGELOG
|
||||
|
||||
## v0.x.x - _TBD_
|
||||
|
||||
* Added new team members to the about page (#317)
|
BIN
packages/website/public/images/team/jacob.jpg
Normal file
BIN
packages/website/public/images/team/jacob.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 MiB |
BIN
packages/website/public/images/team/tom.jpg
Normal file
BIN
packages/website/public/images/team/tom.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 41 KiB |
@@ -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',
|
||||
@@ -48,11 +51,8 @@ const teamRow1: ProfileInfo[] = [
|
||||
image: '/images/team/alex.jpg',
|
||||
linkedIn: 'https://www.linkedin.com/in/alex-xu/',
|
||||
github: '',
|
||||
medium: '',
|
||||
medium: 'https://medium.com/@aqxu',
|
||||
},
|
||||
];
|
||||
|
||||
const teamRow2: ProfileInfo[] = [
|
||||
{
|
||||
name: 'Leonid Logvinov',
|
||||
title: 'Engineer',
|
||||
@@ -61,7 +61,7 @@ const teamRow2: ProfileInfo[] = [
|
||||
image: '/images/team/leonid.png',
|
||||
linkedIn: 'https://www.linkedin.com/in/leonidlogvinov/',
|
||||
github: 'https://github.com/LogvinovLeon',
|
||||
medium: '',
|
||||
medium: 'https://medium.com/@Logvinov',
|
||||
},
|
||||
{
|
||||
name: 'Ben Burns',
|
||||
@@ -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',
|
||||
@@ -90,6 +83,26 @@ const teamRow2: ProfileInfo[] = [
|
||||
Twitter. Electrical and Computer Engineering at Duke.`,
|
||||
image: '/images/team/brandon.png',
|
||||
linkedIn: 'https://www.linkedin.com/company-beta/17942619/',
|
||||
github: 'https://github.com/BMillman19',
|
||||
medium: 'https://medium.com/@bchillman',
|
||||
},
|
||||
{
|
||||
name: 'Tom Schmidt',
|
||||
title: 'Product Manager',
|
||||
description: `Previously engineering at Apple, product management at Facebook and Instagram. Computer Science at Stanford.`,
|
||||
image: '/images/team/tom.jpg',
|
||||
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/jacob.jpg',
|
||||
linkedIn: 'https://www.linkedin.com/in/dekzter/',
|
||||
github: 'https://github.com/dekz',
|
||||
medium: '',
|
||||
},
|
||||
];
|
||||
|
||||
@@ -181,6 +194,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
|
||||
|
@@ -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>
|
||||
|
Reference in New Issue
Block a user