diff --git a/docs/docs/index.md b/docs/docs/index.md index b06459bb..3c7b5675 100644 --- a/docs/docs/index.md +++ b/docs/docs/index.md @@ -1,4 +1,4 @@ --- -sidebar_position: 5 +sidebar_position: 0 title: Docs Reference --- diff --git a/docs/learn/index.md b/docs/learn/index.md index 5e3f3f61..f467a772 100644 --- a/docs/learn/index.md +++ b/docs/learn/index.md @@ -1,4 +1,4 @@ --- -sidebar_position: 2 +sidebar_position: 0 title: Understanding aelf ---- \ No newline at end of file +--- diff --git a/docs/quick-start/index.md b/docs/quick-start/index.md index 4cfe5aa5..0e9a0a1b 100644 --- a/docs/quick-start/index.md +++ b/docs/quick-start/index.md @@ -2,5 +2,3 @@ sidebar_position: 1 title: Quick Start --- - -# Quick start \ No newline at end of file diff --git a/docs/resources/index.md b/docs/resources/index.md index 30f2b5c2..ab764d61 100644 --- a/docs/resources/index.md +++ b/docs/resources/index.md @@ -1,4 +1,4 @@ --- -sidebar_position: 6 +sidebar_position: 0 title: Resources --- diff --git a/docs/tools/index.md b/docs/tools/index.md index 8a5670c5..c5bf7671 100644 --- a/docs/tools/index.md +++ b/docs/tools/index.md @@ -1,4 +1,4 @@ --- -sidebar_position: 4 +sidebar_position: 0 title: Tools ---- \ No newline at end of file +--- diff --git a/sidebars.ts b/sidebars.ts index 826e3534..f3fc64d0 100644 --- a/sidebars.ts +++ b/sidebars.ts @@ -20,7 +20,14 @@ const sidebars: SidebarsConfig = [ ].reduce((acc, cur) => { return { ...acc, - [cur]: [{ type: "autogenerated", dirName: cur }], + [cur]: [ + { + type: "category", + label: " ", + collapsible: false, + items: [{ type: "autogenerated", dirName: cur }], + }, + ], }; }, {} as SidebarsConfig);