Create selected client
This commit is contained in:
parent
a700777ba0
commit
c5c7fd52c4
|
@ -3,6 +3,7 @@ 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>
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue