diff --git a/src/pages/ValidatorOnboarding/ClientSetup/ClientSetup.tsx b/src/pages/ValidatorOnboarding/ClientSetup/ClientSetup.tsx
new file mode 100644
index 00000000..ba7ef61e
--- /dev/null
+++ b/src/pages/ValidatorOnboarding/ClientSetup/ClientSetup.tsx
@@ -0,0 +1,27 @@
+import { Separator, Stack, XStack, YStack } from 'tamagui'
+import SetupRow from './SetupRow'
+import WithdrawalAddress from './WithdrawalAddress'
+import { Text } from '@status-im/components'
+import { ArrowLeftIcon } from '@status-im/icons'
+import { Link } from 'react-router-dom'
+
+const ClientSetup = () => {
+ return (
+
+
+
+
+
+
+
+
+
+ Edit Validators
+
+
+
+
+
+ )
+}
+export default ClientSetup
diff --git a/src/pages/ValidatorOnboarding/ValidatorOnboarding.tsx b/src/pages/ValidatorOnboarding/ValidatorOnboarding.tsx
index 9c7f1eca..295b278b 100644
--- a/src/pages/ValidatorOnboarding/ValidatorOnboarding.tsx
+++ b/src/pages/ValidatorOnboarding/ValidatorOnboarding.tsx
@@ -11,6 +11,7 @@ import ValidatorBoxWrapper from './ValidatorBoxWrapper/ValidatorBoxWrapper'
import { Button } from '@status-im/components'
import { useNavigate } from 'react-router-dom'
import ValidatorSetupInstall from './ValidatorSetup/ValidatorInstall'
+import ClientSetup from './ClientSetup/ClientSetup'
const ValidatorOnboarding = () => {
const [activeStep, setActiveStep] = useState(0)
@@ -51,9 +52,10 @@ const ValidatorOnboarding = () => {
{activeStep === 0 && }
{activeStep === 1 && }
- {activeStep === 2 && }
- {activeStep === 3 && }
- {activeStep === 4 && }
+ {activeStep === 2 && }
+ {activeStep === 3 && }
+ {activeStep === 4 && }
+ {activeStep === 5 && }