From 27110b4a7cfbe8265aab1c9e5fd98bfb4cb5b749 Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Tue, 24 Oct 2023 16:24:49 +0300 Subject: [PATCH] feat: add section for general text for all os --- .../ValidatorSetup/ValidatorInstalling/documentions.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/pages/ValidatorOnboarding/ValidatorSetup/ValidatorInstalling/documentions.ts b/src/pages/ValidatorOnboarding/ValidatorSetup/ValidatorInstalling/documentions.ts index fd1351ec..b7f36e56 100644 --- a/src/pages/ValidatorOnboarding/ValidatorSetup/ValidatorInstalling/documentions.ts +++ b/src/pages/ValidatorOnboarding/ValidatorSetup/ValidatorInstalling/documentions.ts @@ -7,6 +7,7 @@ type DocumentationItem = type ExecClientData = { icon: string + general: string documentation: Record } @@ -15,6 +16,7 @@ type Documentation = Record export const DOCUMENTATIONS: Documentation = { Nethermind: { icon: '/icons/nethermind-circle.png', + general: 'General text for all platforms', documentation: { [MAC]: [{ type: 'text', content: 'Text for mac' }], [WINDOWS]: [{ type: 'text', content: 'Text for windows' }], @@ -23,6 +25,7 @@ export const DOCUMENTATIONS: Documentation = { }, Besu: { icon: '/icons/hyperledger-besu-circle.png', + general: 'General text for all platforms', documentation: { [MAC]: [{ type: 'text', content: 'Text for mac' }], [WINDOWS]: [{ type: 'text', content: 'Text for windows' }], @@ -31,6 +34,7 @@ export const DOCUMENTATIONS: Documentation = { }, Geth: { icon: '/icons/gethereum-mascot-circle.png', + general: 'General text for all platforms', documentation: { [MAC]: [{ type: 'text', content: 'Text for mac' }], [WINDOWS]: [{ type: 'text', content: 'Text for windows' }], @@ -39,6 +43,7 @@ export const DOCUMENTATIONS: Documentation = { }, Erigon: { icon: '/icons/erigon-circle.png', + general: 'General text for all platforms', documentation: { [MAC]: [{ type: 'text', content: 'Text for mac' }], [WINDOWS]: [{ type: 'text', content: 'Text for windows' }], @@ -47,6 +52,7 @@ export const DOCUMENTATIONS: Documentation = { }, Nimbus: { icon: '/icons/NimbusDisabled.svg', + general: 'General text for all platforms', documentation: { [MAC]: [{ type: 'text', content: 'Text for mac' }], [WINDOWS]: [{ type: 'text', content: 'Text for windows' }],