feat: add profile cards section
This commit is contained in:
parent
901d995f66
commit
eeab879ce2
|
@ -17,6 +17,7 @@ import {
|
||||||
HeroInfo,
|
HeroInfo,
|
||||||
Roadmap,
|
Roadmap,
|
||||||
Box,
|
Box,
|
||||||
|
ProfileCards,
|
||||||
} from '../components/mdx'
|
} from '../components/mdx'
|
||||||
|
|
||||||
<Hero size="large">
|
<Hero size="large">
|
||||||
|
@ -92,6 +93,28 @@ import {
|
||||||
/>
|
/>
|
||||||
</Box>
|
</Box>
|
||||||
|
|
||||||
|
<Box top={{ xs: 144, lg: 216 }}>
|
||||||
|
<CallToActionSection
|
||||||
|
title="Team"
|
||||||
|
columns={1}
|
||||||
|
description="Description"
|
||||||
|
label="CTA"
|
||||||
|
href="/about/team"
|
||||||
|
target="_self"
|
||||||
|
/>
|
||||||
|
<ProfileCards
|
||||||
|
items={[
|
||||||
|
{
|
||||||
|
name: 'Name',
|
||||||
|
githubUsername: 'Github',
|
||||||
|
githubLink: 'https://github.com/',
|
||||||
|
discordUsername: 'Discord',
|
||||||
|
discordLink: 'https://discord.gg/',
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</Box>
|
||||||
|
|
||||||
<Box top={{ xs: 144, lg: 216 }}>
|
<Box top={{ xs: 144, lg: 216 }}>
|
||||||
<Roadmap
|
<Roadmap
|
||||||
title="Roadmap"
|
title="Roadmap"
|
||||||
|
|
Loading…
Reference in New Issue