diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-09-12 17:42:58 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-09-12 17:42:58 +0800 |
commit | 4ad0a6c7b7b7c683ca68355f126e8ba7214e6dd3 (patch) | |
tree | 66ea79c44043b9f98d4bd733753b5514cb60285b /packages/website/ts | |
parent | 45b68832aa3eb5c09db33140468ab737114be9e3 (diff) | |
download | dexon-sol-tools-4ad0a6c7b7b7c683ca68355f126e8ba7214e6dd3.tar dexon-sol-tools-4ad0a6c7b7b7c683ca68355f126e8ba7214e6dd3.tar.gz dexon-sol-tools-4ad0a6c7b7b7c683ca68355f126e8ba7214e6dd3.tar.bz2 dexon-sol-tools-4ad0a6c7b7b7c683ca68355f126e8ba7214e6dd3.tar.lz dexon-sol-tools-4ad0a6c7b7b7c683ca68355f126e8ba7214e6dd3.tar.xz dexon-sol-tools-4ad0a6c7b7b7c683ca68355f126e8ba7214e6dd3.tar.zst dexon-sol-tools-4ad0a6c7b7b7c683ca68355f126e8ba7214e6dd3.zip |
Add david sacks
Diffstat (limited to 'packages/website/ts')
-rw-r--r-- | packages/website/ts/pages/about/about.tsx | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/packages/website/ts/pages/about/about.tsx b/packages/website/ts/pages/about/about.tsx index 519e4be5e..cb1b2c735 100644 --- a/packages/website/ts/pages/about/about.tsx +++ b/packages/website/ts/pages/about/about.tsx @@ -208,7 +208,7 @@ const teamRow7: ProfileInfo[] = [ }, ]; -const advisors: ProfileInfo[] = [ +const advisors1: ProfileInfo[] = [ { name: 'Fred Ehrsam', description: 'Co-founder of Coinbase. Previously FX trader at Goldman Sachs.', @@ -232,6 +232,9 @@ const advisors: ProfileInfo[] = [ github: 'https://github.com/joeykrug', angellist: 'https://angel.co/joeykrug', }, +]; + +const advisors2: ProfileInfo[] = [ { name: 'Linda Xie', description: 'Co-founder of Scalar Capital. Previously PM at Coinbase.', @@ -240,6 +243,14 @@ const advisors: ProfileInfo[] = [ medium: 'https://medium.com/@linda.xie', twitter: 'https://twitter.com/ljxie', }, + { + name: 'David Sacks', + description: 'Original COO of PayPal. Founder of Yammer. Investor in Facebook, Uber, SpaceX, Palantir, Airbnb and Houzz.', + image: '/images/advisors/david.png', + linkedIn: 'https://www.linkedin.com/in/lindaxie/', + medium: 'https://medium.com/@linda.xie', + twitter: 'https://twitter.com/ljxie', + }, ]; export interface AboutProps { @@ -316,7 +327,8 @@ export class About extends React.Component<AboutProps, AboutState> { > Advisors: </div> - <div className="clearfix">{this._renderProfiles(advisors)}</div> + <div className="clearfix">{this._renderProfiles(advisors1)}</div> + <div className="clearfix">{this._renderProfiles(advisors2)}</div> </div> <div className="mx-auto py4 sm-px3" style={{ maxWidth: 308 }}> <div className="pb2" style={styles.weAreHiring}> |