Create selected client

This commit is contained in:
Hristo Nedelkov 2023-08-31 14:46:19 +03:00
parent a700777ba0
commit c5c7fd52c4
1 changed files with 19 additions and 2 deletions

View File

@ -3,7 +3,8 @@ import PairedDeviceCard from './PairedDeviceCard'
import { Text } from '@status-im/components'
import ConsensusGaugeCard from './ConsensusGaugeCard'
import ConsensusClientCard from './ConsensusClientCard'
import LinkWithArrow from '../../../components/General/LinkWithArrow'
const ConsensusSelection = () => {
const a = [
{
@ -47,8 +48,24 @@ const ConsensusSelection = () => {
Install Consensus client
</TextTam>
<XStack>
<XStack space={'$8'}>
<ConsensusClientCard name={a[0].name} icon={a[0].icon} />
<YStack width={'67%'} space={'$2'}>
<Text size={19}>The resource efficient Ethereum Clients.</Text>
<Text size={15}>
Nimbus is a client implementation for both execution and consensus layers that strives
to be as lightweight as possible in terms of resources used. This allows it to perform
well on embedded systems, resource-restricted devices -- including Raspberry Pis -- and
multi-purpose servers.
</Text>
<Text size={15}>
<LinkWithArrow
text="Nimbus Documentation"
arrowRight={true}
to="https://www.youtube.com/watch?v=dQw4w9WgXcQ"
/>
</Text>
</YStack>
</XStack>
</YStack>
)