Adjust team lists
This commit is contained in:
@@ -66,6 +66,41 @@ const team: TeamMember[] = [
|
||||
title: 'Co-Founder and CEO',
|
||||
imageUrl: '#',
|
||||
},
|
||||
{
|
||||
name: 'Will Warren',
|
||||
title: 'Co-Founder and CEO',
|
||||
imageUrl: '#',
|
||||
},
|
||||
{
|
||||
name: 'Will Warren',
|
||||
title: 'Co-Founder and CEO',
|
||||
imageUrl: '#',
|
||||
},
|
||||
{
|
||||
name: 'Will Warren',
|
||||
title: 'Co-Founder and CEO',
|
||||
imageUrl: '#',
|
||||
},
|
||||
{
|
||||
name: 'Will Warren',
|
||||
title: 'Co-Founder and CEO',
|
||||
imageUrl: '#',
|
||||
},
|
||||
{
|
||||
name: 'Will Warren',
|
||||
title: 'Co-Founder and CEO',
|
||||
imageUrl: '#',
|
||||
},
|
||||
{
|
||||
name: 'Will Warren',
|
||||
title: 'Co-Founder and CEO',
|
||||
imageUrl: '#',
|
||||
},
|
||||
{
|
||||
name: 'Will Warren',
|
||||
title: 'Co-Founder and CEO',
|
||||
imageUrl: '#',
|
||||
},
|
||||
];
|
||||
|
||||
const advisors: TeamMember[] = [
|
||||
@@ -84,6 +119,31 @@ const advisors: TeamMember[] = [
|
||||
title: 'Co-Founder and CEO',
|
||||
imageUrl: '#',
|
||||
},
|
||||
{
|
||||
name: 'Will Warren',
|
||||
title: 'Co-Founder and CEO',
|
||||
imageUrl: '#',
|
||||
},
|
||||
{
|
||||
name: 'Will Warren',
|
||||
title: 'Co-Founder and CEO',
|
||||
imageUrl: '#',
|
||||
},
|
||||
{
|
||||
name: 'Will Warren',
|
||||
title: 'Co-Founder and CEO',
|
||||
imageUrl: '#',
|
||||
},
|
||||
{
|
||||
name: 'Will Warren',
|
||||
title: 'Co-Founder and CEO',
|
||||
imageUrl: '#',
|
||||
},
|
||||
{
|
||||
name: 'Will Warren',
|
||||
title: 'Co-Founder and CEO',
|
||||
imageUrl: '#',
|
||||
},
|
||||
];
|
||||
|
||||
const Member = ({ name, title, imageUrl }: TeamMember) => (
|
||||
@@ -134,7 +194,7 @@ export const NextAboutTeam = () => (
|
||||
|
||||
<Column colWidth="2/3">
|
||||
<Wrap isWrapped={true} isCentered={false}>
|
||||
{team.map((info, index) => <Member key={`team-${index}`} name={info.name} title={info.title} />)}
|
||||
{advisors.map((info, index) => <Member key={`team-${index}`} name={info.name} title={info.title} />)}
|
||||
</Wrap>
|
||||
</Column>
|
||||
</Wrap>
|
||||
|
||||
Reference in New Issue
Block a user