diff --git a/src/pages/ValidatorOnboarding/Overview.tsx b/src/pages/ValidatorOnboarding/Overview.tsx
new file mode 100644
index 00000000..9adb1516
--- /dev/null
+++ b/src/pages/ValidatorOnboarding/Overview.tsx
@@ -0,0 +1,53 @@
+import { Stack, Text as TextTam, YStack } from 'tamagui'
+import { Button, Shadow, Text } from '@status-im/components'
+
+const Overview = () => {
+ return (
+ <>
+
+
+
+ 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.
+
+
+
+
+
+
+
+
+
+
+
+ >
+ )
+}
+
+export default Overview
diff --git a/src/pages/ValidatorOnboarding/ValidatorOnboarding.tsx b/src/pages/ValidatorOnboarding/ValidatorOnboarding.tsx
index f83cdfa7..9b1c3e60 100644
--- a/src/pages/ValidatorOnboarding/ValidatorOnboarding.tsx
+++ b/src/pages/ValidatorOnboarding/ValidatorOnboarding.tsx
@@ -1,9 +1,9 @@
-import { Stack, Text as TextTam, YStack } from 'tamagui'
-import { Button, Shadow, Text } from '@status-im/components'
+import { YStack } from 'tamagui'
import FormStepper from './FormStepper'
import PageWrapperGradient from '../../components/PageWrappers/PageWrapperGradient'
import Titles from '../../components/General/Titles'
import { useState } from 'react'
+import Overview from './Overview'
const ValidatorOnboarding = () => {
const [activeStep, setActiveStep] = useState(0)
@@ -29,52 +29,7 @@ const ValidatorOnboarding = () => {
subtitle="Earn Rewards for securing the Ethereum Network"
/>
- {activeStep === 0 && (
- <>
-
-
-
- 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.
-
-
-
-