From 32d65de4333ddfcf33b0d2ceba03a9e7e840db7a Mon Sep 17 00:00:00 2001 From: Nicolas Munnich Date: Sat, 24 Aug 2024 09:37:33 +0200 Subject: [PATCH] Added advanced guides page --- docs/docs/advanced-guides/index.md | 12 ++++++++++++ docs/sidebars.js | 10 ++++++++++ 2 files changed, 22 insertions(+) create mode 100644 docs/docs/advanced-guides/index.md diff --git a/docs/docs/advanced-guides/index.md b/docs/docs/advanced-guides/index.md new file mode 100644 index 00000000..e56cfebe --- /dev/null +++ b/docs/docs/advanced-guides/index.md @@ -0,0 +1,12 @@ +--- +title: Advanced Guides +sidebar_label: Advanced Guides +--- + +import DocCardList from "@theme/DocCardList"; + +ZMK, being built on [Zephyrâ„¢](https://zephyrproject.org/), is very modular and flexible. This allows users to combine features, flags, and properties to "construct" features in ZMK, without the need to modify the underlying source code. + +These pages are a collection of guides for users who want a _bit_ more out of their ZMK devices, without the need to delve into the [Zephyrâ„¢](https://zephyrproject.org/) documentation. Guides aimed at keyboard designers are also found under this section. + + diff --git a/docs/sidebars.js b/docs/sidebars.js index c52d6f09..0dc1b852 100644 --- a/docs/sidebars.js +++ b/docs/sidebars.js @@ -114,6 +114,16 @@ module.exports = { "config/system", ], }, + { + type: "category", + label: "Advanced Guides", + link: { + type: "doc", + id: "advanced-guides/index", + }, + collapsed: true, + items: [], + }, { Development: [ "development/clean-room",