diff --git a/src/pages/ValidatorOnboarding/Activation/Activation.tsx b/src/pages/ValidatorOnboarding/Activation/Activation.tsx index ac053936..8954b8d4 100644 --- a/src/pages/ValidatorOnboarding/Activation/Activation.tsx +++ b/src/pages/ValidatorOnboarding/Activation/Activation.tsx @@ -1,7 +1,20 @@ -import { YStack } from 'tamagui' +import { XStack, Stack, YStack } from 'tamagui' +import { Text } from '@status-im/components' +import Confetti from 'react-confetti' const Activation = () => { - return + return ( + + + + + + Validator Setup + + + + + ) } export default Activation diff --git a/src/pages/ValidatorOnboarding/ValidatorSetup/CompleteSetup.tsx b/src/pages/ValidatorOnboarding/ValidatorSetup/CompleteSetup.tsx deleted file mode 100644 index f602642f..00000000 --- a/src/pages/ValidatorOnboarding/ValidatorSetup/CompleteSetup.tsx +++ /dev/null @@ -1,16 +0,0 @@ -import { XStack, Stack, YStack } from 'tamagui' -import { Text } from '@status-im/components' -import { useState } from 'react' -const CompleteSetup = () => { - return ( - - - - Validator Setup - - - - ) -} - -export default CompleteSetup