feat: create exec client cards component

This commit is contained in:
RadoslavDimchev 2023-10-24 06:37:23 +03:00
parent 1704ca4884
commit ba9303de1e
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
import { Stack, XStack, YStack } from 'tamagui'
import { Text } from '@status-im/components'
import ExecClientCard from './ExecClientCard'
import { DOCUMENTATION } from '../../../../constants'
const ExecClientCards = () => {
return (
<YStack space={'$2'}>
<Stack style={{ marginTop: '15px', marginLeft: 0, marginBottom: '15px' }}>
<Text size={27}>Select Execution client</Text>
</Stack>
<XStack justifyContent={'space-between'}>
{DOCUMENTATION}
<ExecClientCard name={'Nethermind'} icon={'/icons/nethermind-circle.png'} />
<ExecClientCard name={'Besu'} icon={'/icons/hyperledger-besu-circle.png'} />
<ExecClientCard name={'Geth'} icon={'/icons/gethereum-mascot-circle.png'} />
<ExecClientCard name={'Erigon'} icon={'/icons/erigon-circle.png'} />
<ExecClientCard name={'Nimbus'} icon={'/icons/NimbusDisabled.svg'} isComingSoon={true} />
</XStack>
</YStack>
)
}
export default ExecClientCards