mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-12-28 06:59:45 -08:00
Merge pull request #184 from jfirwin/master
reorganize navigation and sidebars
This commit is contained in:
commit
deeb4d7f42
|
@ -42,6 +42,43 @@ const config = {
|
|||
activeBasePath: "docs/academy",
|
||||
},
|
||||
*/
|
||||
{
|
||||
label: "Documentation",
|
||||
items: [
|
||||
{
|
||||
label: "About Meshtastic",
|
||||
to: "docs/software",
|
||||
},
|
||||
{
|
||||
label: "Getting Started",
|
||||
to: "docs/getting-started",
|
||||
},
|
||||
{
|
||||
label: "Device Settings",
|
||||
to: "docs/settings",
|
||||
},
|
||||
{
|
||||
label: "Hardware Details",
|
||||
to: "docs/hardware",
|
||||
},
|
||||
{
|
||||
label: "Contribute to Meshtastic",
|
||||
to: "docs/developers",
|
||||
},
|
||||
/*
|
||||
TODO add Docusaurus and Vercel instructions for how to manage the docs
|
||||
{
|
||||
label: "About this Documentation",
|
||||
to: "docs/about-documentation",
|
||||
},
|
||||
*/
|
||||
{
|
||||
label: "Legal",
|
||||
to: "docs/legal",
|
||||
},
|
||||
|
||||
],
|
||||
},
|
||||
{
|
||||
label: "Firmware",
|
||||
to: "firmware",
|
||||
|
@ -52,11 +89,6 @@ const config = {
|
|||
to: "showcase",
|
||||
activeBasePath: "showcase",
|
||||
},
|
||||
{
|
||||
label: "Docs",
|
||||
to: "docs/getting-started",
|
||||
activeBasePath: "docs/getting-started",
|
||||
},
|
||||
{
|
||||
href: "https://meshtastic.discourse.group",
|
||||
label: "Forum",
|
||||
|
|
34
sidebars.js
34
sidebars.js
|
@ -1,16 +1,5 @@
|
|||
module.exports = {
|
||||
Sidebar: {
|
||||
"Getting Started": [
|
||||
"getting-started/overview",
|
||||
"getting-started/faq",
|
||||
{
|
||||
"Flashing firmware": [
|
||||
"getting-started/flashing-esp32",
|
||||
"getting-started/flashing-nrf52",
|
||||
],
|
||||
},
|
||||
"getting-started/concepts",
|
||||
],
|
||||
About: {
|
||||
Software: [
|
||||
"software/overview",
|
||||
{
|
||||
|
@ -104,7 +93,22 @@ module.exports = {
|
|||
"software/other/ant",
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
GettingStarted: {
|
||||
"Getting Started": [
|
||||
"getting-started/overview",
|
||||
"getting-started/faq",
|
||||
{
|
||||
"Flashing firmware": [
|
||||
"getting-started/flashing-esp32",
|
||||
"getting-started/flashing-nrf52",
|
||||
],
|
||||
},
|
||||
"getting-started/concepts",
|
||||
],
|
||||
},
|
||||
Settings: {
|
||||
Settings: [
|
||||
"software/settings/overview",
|
||||
"software/settings/channel",
|
||||
|
@ -130,7 +134,7 @@ module.exports = {
|
|||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
Hardware: {
|
||||
Hardware: [
|
||||
"hardware/overview",
|
||||
{
|
||||
|
@ -155,6 +159,8 @@ module.exports = {
|
|||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
Contribute: {
|
||||
Developers: [
|
||||
"developers/overview",
|
||||
{
|
||||
|
@ -183,6 +189,8 @@ module.exports = {
|
|||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
Legal: {
|
||||
Legal: [
|
||||
"legal/overview",
|
||||
"legal/licensing",
|
||||
|
|
Loading…
Reference in a new issue