docs: Add missing client settings pages to navigation (#688)

Add all 5 system tray settings under Client > Settings: Allow SSH,
Block Inbound Connections, Connect on Startup, Enable Lazy Connections,
and Enable Quantum-Resistance. Allow SSH and Enable Lazy Connections
redirect to existing docs. Connect on Startup is a new page. Renames
Post-Quantum Cryptography heading to Enable Quantum-Resistance to match
the GUI label.
This commit is contained in:
Jack Carter
2026-04-08 16:20:06 +02:00
committed by GitHub
parent 5a575acdee
commit bd26193053
4 changed files with 76 additions and 2 deletions

View File

@@ -665,12 +665,24 @@ export const docsNavigation = [
title: 'Settings',
isOpen: false,
links: [
{
title: 'Allow SSH',
href: '/client/allow-ssh',
},
{
title: 'Block Inbound Connections',
href: '/client/block-inbound-connections',
},
{
title: 'Post-Quantum Cryptography',
title: 'Connect on Startup',
href: '/client/connect-on-startup',
},
{
title: 'Enable Lazy Connections',
href: '/client/enable-lazy-connections',
},
{
title: 'Enable Quantum-Resistance',
href: '/client/post-quantum-cryptography',
},
],