mirror of
https://github.com/ratspeak/ratspeak-docs
synced 2026-08-12 18:07:38 -04:00
- Add hub homepage (src/pages/index.js, src/css/hub.css) with animated mesh/particle hero matching ratspeak.org/about.html - Add tutorials section (hardware-flashing, networking) and sidebar - Highlight the active section (Docs/Tutorials) in the custom navbar via a client module (src/js/navbarActive.js) - Fix the mobile nav drawer: flatten the two-panel layout and strip the `inert` attribute so nav links are tappable and don't overlap the documentation heading (src/js/mobileSidebar.js, src/css/custom.css) - Proofread the Heltec LoRa32 flashing guide - Remove unused default Docusaurus starter assets - Ignore editor swap files
6 lines
181 B
JavaScript
6 lines
181 B
JavaScript
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
const sidebars = {
|
|
tutorialsSidebar: [{type: 'autogenerated', dirName: '.'}],
|
|
};
|
|
|
|
export default sidebars;
|