Refactor navigation structure in NavigationDocs.jsx to group mobile and system specific platforms under a new 'Platforms' section, improving organization.

This commit is contained in:
Brandon Hopkins
2025-12-01 09:07:37 -08:00
parent 1b73ce2855
commit 677e5f72a6

View File

@@ -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' },
],
},