diff --git a/docs/02-getting-started/01-setup.mdx b/docs/02-getting-started/01-setup.mdx index 5b3b416e..b1ae22d0 100644 --- a/docs/02-getting-started/01-setup.mdx +++ b/docs/02-getting-started/01-setup.mdx @@ -212,8 +212,8 @@ cargo run -p merod -- --node-name node1 --home data init --server-port 2428 --sw > You can also view these settings in the config.toml file located within the > node folder. > -> **Near** ![NearConfig](/init/near-config.png) **Starknet** -> ![SnConfig](/init/sn-config.png) **Internet Computer (ICP)** +> **Near** ![NearConfig](/init/near-config.png) **Starknet** > +> ![SnConfig](/init/sn-config.png) **Internet Computer (ICP)** > > ![ICPConfig](/init/icp-config.png) #### 2. Run node diff --git a/docusaurus.config.ts b/docusaurus.config.ts index 5cccef95..1eaf904f 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -92,30 +92,26 @@ const config: Config = { position: 'left', label: 'Getting Started', }, - { - to: '/core-concepts/terminology', - position: 'left', - label: 'Core Concepts', - }, - { - to: '/architecture/system-overview', - position: 'left', - label: 'Architecture', - }, - { - to: '/developer-tools/overview', - position: 'left', - label: 'Developer Tools', - }, - { - to: '/tutorials/overview', - position: 'left', - label: 'Tutorials', - }, { label: 'Other', // Label for the dropdown position: 'right', // Position in the navbar items: [ + { + to: '/core-concepts/terminology', + label: 'Core Concepts', + }, + { + to: '/architecture/system-overview', + label: 'Architecture', + }, + { + to: '/developer-tools/overview', + label: 'Developer Tools', + }, + { + to: '/tutorials/overview', + label: 'Tutorials', + }, { to: '/resources/manifesto', label: 'Resources', @@ -199,7 +195,7 @@ const config: Config = { mermaid: { theme: { light: 'neutral', - dark: 'dark' + dark: 'dark', }, }, } as Preset.ThemeConfig,