From 94d29ab22eeef287b5fb81d0a42e13635653db6a Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Thu, 11 Jan 2018 17:24:08 +0100 Subject: Add @tom and @dekz while removing @PhABC --- packages/website/ts/pages/about/about.tsx | 38 +++++++++++++++++++---------- packages/website/ts/pages/about/profile.tsx | 2 +- 2 files changed, 26 insertions(+), 14 deletions(-) (limited to 'packages/website/ts/pages') diff --git a/packages/website/ts/pages/about/about.tsx b/packages/website/ts/pages/about/about.tsx index 3ff16f9fe..75b350c24 100644 --- a/packages/website/ts/pages/about/about.tsx +++ b/packages/website/ts/pages/about/about.tsx @@ -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 {
{this._renderProfiles(teamRow1)}
{this._renderProfiles(teamRow2)}
+
{this._renderProfiles(teamRow3)}
{props.profileInfo.description}
-
+
{renderSocialMediaIcons(props.profileInfo)}
-- cgit