diff options
author | Fabio Berger <me@fabioberger.com> | 2018-05-16 21:15:23 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-05-16 21:15:23 +0800 |
commit | 22f3f57f44cfc4bdd27a79df36a8d80b96b02a07 (patch) | |
tree | d0d7a510b4322d1253a6f3d02c6267c4c7eabed2 /packages/website/ts/pages | |
parent | b2f362225c5c03526852fc6b997241faba6d1231 (diff) | |
parent | cc486cb86d46cefbd31a43a87be3ee9b3fd461a6 (diff) | |
download | dexon-sol-tools-22f3f57f44cfc4bdd27a79df36a8d80b96b02a07.tar dexon-sol-tools-22f3f57f44cfc4bdd27a79df36a8d80b96b02a07.tar.gz dexon-sol-tools-22f3f57f44cfc4bdd27a79df36a8d80b96b02a07.tar.bz2 dexon-sol-tools-22f3f57f44cfc4bdd27a79df36a8d80b96b02a07.tar.lz dexon-sol-tools-22f3f57f44cfc4bdd27a79df36a8d80b96b02a07.tar.xz dexon-sol-tools-22f3f57f44cfc4bdd27a79df36a8d80b96b02a07.tar.zst dexon-sol-tools-22f3f57f44cfc4bdd27a79df36a8d80b96b02a07.zip |
Merge branch 'development' into improvement/addCustomTslintRules
* development:
fix style errors
Fix circular dependency
Add my profile image to images
Add myself to about page
Add dogfood configs to website
Change minimum Node version to 6.12
Document Node.js version requirement and add it to package.json
Diffstat (limited to 'packages/website/ts/pages')
-rw-r--r-- | packages/website/ts/pages/about/about.tsx | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/packages/website/ts/pages/about/about.tsx b/packages/website/ts/pages/about/about.tsx index 673022329..360cbb136 100644 --- a/packages/website/ts/pages/about/about.tsx +++ b/packages/website/ts/pages/about/about.tsx @@ -128,9 +128,6 @@ const teamRow4: ProfileInfo[] = [ github: '', medium: '', }, -]; - -const teamRow5: ProfileInfo[] = [ { name: 'Greg Hysen', title: 'Blockchain Engineer', @@ -140,6 +137,9 @@ const teamRow5: ProfileInfo[] = [ github: 'https://github.com/hysz', medium: '', }, +]; + +const teamRow5: ProfileInfo[] = [ { name: 'Remco Bloemen', title: 'Technical Fellow', @@ -149,6 +149,14 @@ const teamRow5: ProfileInfo[] = [ github: 'http://github.com/recmo', medium: '', }, + { + name: 'Francesco Agosti', + title: 'Senior Frontend Engineer', + description: `Full-stack engineer. Previously senior software engineer at Yelp. Computer science Duke.`, + image: 'images/team/fragosti.png', + linkedIn: 'https://www.linkedin.com/in/fragosti/', + github: 'http://github.com/fragosti', + }, ]; const advisors: ProfileInfo[] = [ |