This is an automated email from the ASF dual-hosted git repository.
hcr pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/mahout.git
The following commit(s) were added to refs/heads/main by this push:
new 0bb750b48 [Website] refactor sidebar (#990)
0bb750b48 is described below
commit 0bb750b48ab9648230159e10ee40345652c99707
Author: Ryan Huang <[email protected]>
AuthorDate: Sat Jan 31 00:28:10 2026 +0800
[Website] refactor sidebar (#990)
---
docs/qumat/core/index.md | 6 ++++--
website/sidebars.ts | 28 ++++++++++++++++------------
2 files changed, 20 insertions(+), 14 deletions(-)
diff --git a/docs/qumat/core/index.md b/docs/qumat/core/index.md
index aab2771f6..5dd16a8d8 100644
--- a/docs/qumat/core/index.md
+++ b/docs/qumat/core/index.md
@@ -8,7 +8,9 @@ Qumat Core provides a unified API for building quantum circuits
across multiple
## Documentation
-- [Getting Started](./getting-started)
+- [Getting Started](../getting-started-with-qumat)
+- [Basic Gates](../basic-gates)
+- [Parameterized Circuits](../parameterized-circuits)
+- [API Reference](../api)
- [Core Concepts](./concepts)
-- [API Reference](./api)
- [Examples](./examples)
diff --git a/website/sidebars.ts b/website/sidebars.ts
index 14aad6631..4353b419f 100644
--- a/website/sidebars.ts
+++ b/website/sidebars.ts
@@ -12,27 +12,33 @@ const sidebars: SidebarsConfig = {
collapsed: false,
items: [
'getting-started-with-qumat',
- 'basic-gates',
- 'api',
],
},
{
type: 'category',
- label: 'Qumat Core',
+ label: 'Qumat (Circuits)',
collapsed: false,
link: {type: 'doc', id: 'qumat/index'},
items: [
- 'qumat/core/index',
- 'qumat/core/getting-started',
- 'qumat/core/concepts',
- 'qumat/core/api',
- 'qumat/core/examples',
+ 'basic-gates',
+ 'parameterized-circuits',
+ 'api',
+ {
+ type: 'category',
+ label: 'Core Reference',
+ collapsed: true,
+ link: {type: 'doc', id: 'qumat/core/index'},
+ items: [
+ 'qumat/core/concepts',
+ 'qumat/core/examples',
+ ],
+ },
],
},
{
type: 'category',
- label: 'QDP (Quantum Data Plane)',
- collapsed: true,
+ label: 'QDP (Data Encoding)',
+ collapsed: false,
link: {type: 'doc', id: 'qumat/qdp/index'},
items: [
'qumat/qdp/getting-started',
@@ -73,7 +79,6 @@ const sidebars: SidebarsConfig = {
label: 'Advanced Topics',
collapsed: true,
items: [
- 'parameterized-circuits',
'pqc',
'qumat-gap-analysis-for-pqc',
],
@@ -116,7 +121,6 @@ const sidebars: SidebarsConfig = {
collapsed: true,
items: [
'about/how-to-contribute',
- 'adr/jekyll-to-docusaurus-migration',
],
},
],