feat: add team section

This commit is contained in:
jinhojang6 2024-05-17 00:32:26 +09:00
parent f74428dab1
commit 19b905c817
No known key found for this signature in database
GPG Key ID: 1762F21FE8B543F8
1 changed files with 74 additions and 0 deletions

View File

@ -21,6 +21,7 @@ import {
SectionHeader,
InputCTASection,
VideoSection,
ProfileCard,
} from '../components/mdx'
import { Button } from '@acid-info/lsd-react'
@ -269,3 +270,76 @@ import Link from '@docusaurus/Link'
</Grid>
</Box>
<Box top={{ xs: 134 }}>
<SectionHeader title="Team" noBorder />
<Box
top={{ xs: 64 }}
bottom={{ xs: 64 }}
>
<Grid
xs={{ cols: 2, gap: '24px 16px', wrap: true }}
md={{ cols: 4, gap: '24px 16px', wrap: true }}
>
<Grid.Item>
<ProfileCard
name='Sasha'
imgSrc='https://avatars.githubusercontent.com/u/118575614?v=4'
githubUsername='github'
githubLink='https://github.com'
discordUsername='discord'
discordLink='https://discord.gg'
/>
</Grid.Item>
<Grid.Item>
<ProfileCard
name='Sasha'
imgSrc='https://avatars.githubusercontent.com/u/118575614?v=4'
githubUsername='github'
githubLink='https://github.com'
/>
</Grid.Item>
</Grid>
</Box>
</Box>
<Box top={{ xs: 152, lg: 300 }}>
<Grid
xs={{ cols: 1, gap: '1rem' }}
md={{ cols: 2 }}
className='bottom-cta-sections'
>
<Grid.Item xs={1}>
<InputCTASection
description={
'Want to get involved with Codex?\nJoin the Discord community.'
}
link="https://discord.gg/codex-storage"
label="Get Involved"
/>
</Grid.Item>
<Grid.Item xs={1}>
<InputCTASection
description={'Subscribe\nto our newsletter'}
label="Subscribe"
formInput={[
{
label: 'Name',
placeholder: 'Name',
type: 'text',
name: 'name',
required: true,
},
{
label: 'Email',
placeholder: 'Enter your email',
type: 'email',
name: 'email',
required: true,
},
]}
formListId={3}
/>
</Grid.Item>
</Grid>
</Box>