diff --git a/src/components/General/LinkWithArrow.tsx b/src/components/General/LinkWithArrow.tsx
index 6f9dcce9..c547caea 100644
--- a/src/components/General/LinkWithArrow.tsx
+++ b/src/components/General/LinkWithArrow.tsx
@@ -8,9 +8,17 @@ type LinkWithArrowProps = {
arrowLeft?: boolean
arrowRight?: boolean
style?: React.CSSProperties
+ textColor?: string
}
-const LinkWithArrow = ({ text, to, arrowLeft, arrowRight, style }: LinkWithArrowProps) => {
+const LinkWithArrow = ({
+ text,
+ to,
+ arrowLeft,
+ arrowRight,
+ style,
+ textColor,
+}: LinkWithArrowProps) => {
const navigate = useNavigate()
const navigateHandler = () => {
@@ -29,7 +37,7 @@ const LinkWithArrow = ({ text, to, arrowLeft, arrowRight, style }: LinkWithArrow
onClick={navigateHandler}
>
{arrowLeft && }
-
+
{text}
{arrowRight && }
diff --git a/src/pages/ValidatorOnboarding/ValidatorSetup/ConsensusSelection.tsx b/src/pages/ValidatorOnboarding/ValidatorSetup/ConsensusSelection.tsx
index b3aa9752..db2658e8 100644
--- a/src/pages/ValidatorOnboarding/ValidatorSetup/ConsensusSelection.tsx
+++ b/src/pages/ValidatorOnboarding/ValidatorSetup/ConsensusSelection.tsx
@@ -50,16 +50,17 @@ const ConsensusSelection = () => {
-
- The resource efficient Ethereum Clients.
+
+ The resource efficient Ethereum Clients.
Nimbus is a client implementation for both execution and consensus layers that strives
to be as lightweight as possible in terms of resources used. This allows it to perform
well on embedded systems, resource-restricted devices -- including Raspberry Pis -- and
multi-purpose servers.
-
+