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