This commit is contained in:
Hristo Nedelkov 2023-08-28 22:24:27 +03:00
parent 664a220681
commit c30c262420
1 changed files with 7 additions and 0 deletions

View File

@ -2,6 +2,7 @@ import { XStack, Stack, Text as TextTam, YStack } from 'tamagui'
import PairedDeviceCard from './PairedDeviceCard' import PairedDeviceCard from './PairedDeviceCard'
import { Text } from '@status-im/components' import { Text } from '@status-im/components'
import ExecClientCard from './ExecClientCard' import ExecClientCard from './ExecClientCard'
import { Link } from 'react-router-dom'
const ValidatorSetup = () => { const ValidatorSetup = () => {
const execClientCardsContent = [ const execClientCardsContent = [
@ -66,6 +67,12 @@ const ValidatorSetup = () => {
/> />
))} ))}
</XStack> </XStack>
<Stack marginTop={'10%'}>
<Text size={15} weight={'semibold'} color="#2A4CF4">
<Link to={'https://launchpad.ethereum.org/en/faq'}></Link>
View Execution client comparison chart
</Text>
</Stack>
</YStack> </YStack>
) )
} }