diff --git a/src/pages/ValidatorOnboarding/ValidatorOnboarding.tsx b/src/pages/ValidatorOnboarding/ValidatorOnboarding.tsx index 320f2c61..a390f172 100644 --- a/src/pages/ValidatorOnboarding/ValidatorOnboarding.tsx +++ b/src/pages/ValidatorOnboarding/ValidatorOnboarding.tsx @@ -2,70 +2,60 @@ import { Stack, Text as TextTam, YStack } from 'tamagui' import { Button, Shadow, Text } from '@status-im/components' import FormStepper from './Stepper' import PageWrapperGradient from '../../components/PageWrappers/PageWrapperGradient' +import Titles from '../../components/General/Titles' -Text -function ValidatorOnboarding() { +const ValidatorOnboarding = () => { return ( - <> - - - - - Create Nimbus Validator - - - Earn Rewards for securing the Ethereum Network - - - - - - - - Overview - - - - Becoming a validator is a big responsibility with important preparation steps. Only - start the deposit process when youre ready." - - - By running a validator, you'll be responsible for securing the network and receive - continuous payouts for actions that help the network reach consensus. - - - Since the successful transition to proof-of-stake via The Merge, Ethereum is fully - secured by proof-of-stake validators. By running a validator, you'll be helping to - secure the Ethereum network. - - -
-
- background -
-
-
- - - + + + + + - - + + + + Overview + + + + Becoming a validator is a big responsibility with important preparation steps. Only + start the deposit process when youre ready." + + + By running a validator, you'll be responsible for securing the network and receive + continuous payouts for actions that help the network reach consensus. + + + Since the successful transition to proof-of-stake via The Merge, Ethereum is fully + secured by proof-of-stake validators. By running a validator, you'll be helping to + secure the Ethereum network. + + +
+
+ background +
+
+
+
+
) }