From f73e6a75b1707aca52b1436bc66c9cad4f8e2dc3 Mon Sep 17 00:00:00 2001 From: Steve Klebanoff Date: Wed, 10 Oct 2018 15:21:41 -0700 Subject: feat: add Steve to team page --- packages/website/ts/pages/about/about.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'packages/website/ts/pages/about') diff --git a/packages/website/ts/pages/about/about.tsx b/packages/website/ts/pages/about/about.tsx index 037647161..2629f8632 100644 --- a/packages/website/ts/pages/about/about.tsx +++ b/packages/website/ts/pages/about/about.tsx @@ -240,6 +240,16 @@ const teamRow8: ProfileInfo[] = [ }, ]; +const teamRow9: ProfileInfo[] = [ + { + name: 'Steve Klebanoff', + title: 'Senior Engineer', + description: ` Full-stack engineer. Previously Staff Software Engineer at Appfolio. Computer Science & Cognitive Psychology at Northeastern University.`, + image: 'images/team/steve.png', + linkedIn: 'https://www.linkedin.com/in/steveklebanoff/', + }, +]; + const advisors1: ProfileInfo[] = [ { name: 'Fred Ehrsam', @@ -348,6 +358,7 @@ export class About extends React.Component {
{this._renderProfiles(teamRow6)}
{this._renderProfiles(teamRow7)}
{this._renderProfiles(teamRow8)}
+
{this._renderProfiles(teamRow9)}