Landing page and navigation bar

This commit is contained in:
2024-07-02 01:26:51 +02:00
parent 6f8fed1a36
commit 1432c93d32
20 changed files with 16241 additions and 2 deletions

34
sidebars.js Normal file
View File

@@ -0,0 +1,34 @@
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
// By default, Docusaurus generates a sidebar from the docs folder structure
documentationSidebar: [{type: 'autogenerated', dirName: 'documentation'}],
season1Sidebar: [{type: 'autogenerated', dirName: 'season1'}],
season2Sidebar: [{type: 'autogenerated', dirName: 'season2'}],
// But you can create a sidebar manually
/*
tutorialSidebar: [
'intro',
'hello',
{
type: 'category',
label: 'Tutorial',
items: ['tutorial-basics/create-a-document'],
},
],
*/
};
export default sidebars;