From 677e5f72a6e9924062087e4a8c85b838a8625098 Mon Sep 17 00:00:00 2001 From: Brandon Hopkins Date: Mon, 1 Dec 2025 09:07:37 -0800 Subject: [PATCH] Refactor navigation structure in NavigationDocs.jsx to group mobile and system specific platforms under a new 'Platforms' section, improving organization. --- src/components/NavigationDocs.jsx | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/components/NavigationDocs.jsx b/src/components/NavigationDocs.jsx index c097c34e..35be7539 100644 --- a/src/components/NavigationDocs.jsx +++ b/src/components/NavigationDocs.jsx @@ -37,14 +37,19 @@ export const docsNavigation = [ { title: 'Linux', href: '/get-started/install/linux' }, { title: 'Windows', href: '/get-started/install/windows' }, { title: 'MacOS', href: '/get-started/install/macos' }, - { title: 'Android', href: '/get-started/install/android' }, - { title: 'iOS', href: '/get-started/install/ios' }, { title: 'Docker', href: '/get-started/install/docker' }, + ], + }, + { + title: 'Platforms', isOpen: false, + links: [ + { title: 'iOS', href: '/get-started/install/ios' }, + { title: 'Android', href: '/get-started/install/android' }, { title: 'Synology', href: '/get-started/install/synology' }, { title: 'pfSense', href: '/get-started/install/pfsense' }, { title: 'OPNsense', href: '/get-started/install/opnsense' }, - ], - }, + ] + }, { title: 'CLI', href: '/get-started/cli' }, ], },