mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-03-02 03:50:40 +00:00
feat: add section for general text for all os
This commit is contained in:
parent
17bff99042
commit
27110b4a7c
@ -7,6 +7,7 @@ type DocumentationItem =
|
|||||||
|
|
||||||
type ExecClientData = {
|
type ExecClientData = {
|
||||||
icon: string
|
icon: string
|
||||||
|
general: string
|
||||||
documentation: Record<string, DocumentationItem[]>
|
documentation: Record<string, DocumentationItem[]>
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -15,6 +16,7 @@ type Documentation = Record<string, ExecClientData>
|
|||||||
export const DOCUMENTATIONS: Documentation = {
|
export const DOCUMENTATIONS: Documentation = {
|
||||||
Nethermind: {
|
Nethermind: {
|
||||||
icon: '/icons/nethermind-circle.png',
|
icon: '/icons/nethermind-circle.png',
|
||||||
|
general: 'General text for all platforms',
|
||||||
documentation: {
|
documentation: {
|
||||||
[MAC]: [{ type: 'text', content: 'Text for mac' }],
|
[MAC]: [{ type: 'text', content: 'Text for mac' }],
|
||||||
[WINDOWS]: [{ type: 'text', content: 'Text for windows' }],
|
[WINDOWS]: [{ type: 'text', content: 'Text for windows' }],
|
||||||
@ -23,6 +25,7 @@ export const DOCUMENTATIONS: Documentation = {
|
|||||||
},
|
},
|
||||||
Besu: {
|
Besu: {
|
||||||
icon: '/icons/hyperledger-besu-circle.png',
|
icon: '/icons/hyperledger-besu-circle.png',
|
||||||
|
general: 'General text for all platforms',
|
||||||
documentation: {
|
documentation: {
|
||||||
[MAC]: [{ type: 'text', content: 'Text for mac' }],
|
[MAC]: [{ type: 'text', content: 'Text for mac' }],
|
||||||
[WINDOWS]: [{ type: 'text', content: 'Text for windows' }],
|
[WINDOWS]: [{ type: 'text', content: 'Text for windows' }],
|
||||||
@ -31,6 +34,7 @@ export const DOCUMENTATIONS: Documentation = {
|
|||||||
},
|
},
|
||||||
Geth: {
|
Geth: {
|
||||||
icon: '/icons/gethereum-mascot-circle.png',
|
icon: '/icons/gethereum-mascot-circle.png',
|
||||||
|
general: 'General text for all platforms',
|
||||||
documentation: {
|
documentation: {
|
||||||
[MAC]: [{ type: 'text', content: 'Text for mac' }],
|
[MAC]: [{ type: 'text', content: 'Text for mac' }],
|
||||||
[WINDOWS]: [{ type: 'text', content: 'Text for windows' }],
|
[WINDOWS]: [{ type: 'text', content: 'Text for windows' }],
|
||||||
@ -39,6 +43,7 @@ export const DOCUMENTATIONS: Documentation = {
|
|||||||
},
|
},
|
||||||
Erigon: {
|
Erigon: {
|
||||||
icon: '/icons/erigon-circle.png',
|
icon: '/icons/erigon-circle.png',
|
||||||
|
general: 'General text for all platforms',
|
||||||
documentation: {
|
documentation: {
|
||||||
[MAC]: [{ type: 'text', content: 'Text for mac' }],
|
[MAC]: [{ type: 'text', content: 'Text for mac' }],
|
||||||
[WINDOWS]: [{ type: 'text', content: 'Text for windows' }],
|
[WINDOWS]: [{ type: 'text', content: 'Text for windows' }],
|
||||||
@ -47,6 +52,7 @@ export const DOCUMENTATIONS: Documentation = {
|
|||||||
},
|
},
|
||||||
Nimbus: {
|
Nimbus: {
|
||||||
icon: '/icons/NimbusDisabled.svg',
|
icon: '/icons/NimbusDisabled.svg',
|
||||||
|
general: 'General text for all platforms',
|
||||||
documentation: {
|
documentation: {
|
||||||
[MAC]: [{ type: 'text', content: 'Text for mac' }],
|
[MAC]: [{ type: 'text', content: 'Text for mac' }],
|
||||||
[WINDOWS]: [{ type: 'text', content: 'Text for windows' }],
|
[WINDOWS]: [{ type: 'text', content: 'Text for windows' }],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user