diff --git a/docs/fundamentals/index.md b/docs/fundamentals/index.md index 6d6cb735..95c4543d 100644 --- a/docs/fundamentals/index.md +++ b/docs/fundamentals/index.md @@ -2,7 +2,7 @@ id: "index" title: "Super Swarm Certification System" slug: "/" -sidebar_position: 1 +sidebar_position: 0 --- When a node (a confidential virtual machine, VM) joins a Super Swarm network, it goes through a cryptographic onboarding process that establishes hardware-backed trust before participating in any cluster operations. This document explains how that process works: what certificates are generated, how they relate to one another, and what exactly is verified. diff --git a/docusaurus.config.js b/docusaurus.config.js index b5c6d454..29e12f20 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -48,9 +48,9 @@ const config = { [ "@docusaurus/plugin-content-docs", { - id: "cli", - path: "./docs/cli", - routeBasePath: "/cli", + id: "fundamentals", + path: "./docs/fundamentals", + routeBasePath: "/fundamentals", //sidebarPath: "./sidebars.js", remarkPlugins: [math], rehypePlugins: [katex], @@ -59,9 +59,9 @@ const config = { [ "@docusaurus/plugin-content-docs", { - id: "fundamentals", - path: "./docs/fundamentals", - routeBasePath: "/fundamentals", + id: "cli", + path: "./docs/cli", + routeBasePath: "/cli", //sidebarPath: "./sidebars.js", remarkPlugins: [math], rehypePlugins: [katex], @@ -104,15 +104,15 @@ const config = { type: "doc", docId: "index", position: "right", - label: "CLI", - docsPluginId: "cli", + label: "Fundamentals", + docsPluginId: "fundamentals", }, { type: "doc", docId: "index", position: "right", - label: "Fundamentals", - docsPluginId: "fundamentals", + label: "CLI", + docsPluginId: "cli", }, ], }, diff --git a/src/pages/index.js b/src/pages/index.js index ae9cd794..b8ad0d4c 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -5,7 +5,7 @@ export default function Home() { const history = useHistory(); useEffect(() => { - history.replace('/cli' + window.location.search + window.location.hash); + history.replace('/fundamentals' + window.location.search + window.location.hash); }, []); return null;