diff --git a/docs/docs/about/about.md b/docs/docs/about/about.md new file mode 100644 index 000000000..9d813e021 --- /dev/null +++ b/docs/docs/about/about.md @@ -0,0 +1,6 @@ +--- +title: About Jan +--- + +- Mission, Vision, etc +- COSS Model \ No newline at end of file diff --git a/docs/docs/guides/internal.md b/docs/docs/handbook/engineering/internal.md similarity index 99% rename from docs/docs/guides/internal.md rename to docs/docs/handbook/engineering/internal.md index 20579556a..6d911671f 100644 --- a/docs/docs/guides/internal.md +++ b/docs/docs/handbook/engineering/internal.md @@ -1,6 +1,5 @@ --- -title: Internal Guidelines -sidebar_position: 6 +title: Cookbook --- # Internal Guidelines diff --git a/docs/docs/handbook/handbook.md b/docs/docs/handbook/handbook.md index bfb919b92..3cb2c1af9 100644 --- a/docs/docs/handbook/handbook.md +++ b/docs/docs/handbook/handbook.md @@ -1,4 +1,7 @@ --- title: Company Handbook slug: /handbook ---- \ No newline at end of file +--- + + +## Remote Work \ No newline at end of file diff --git a/docs/docs/handbook/remote-work.md b/docs/docs/handbook/remote-work.md deleted file mode 100644 index b943e293c..000000000 --- a/docs/docs/handbook/remote-work.md +++ /dev/null @@ -1,3 +0,0 @@ ---- -title: How We Work ---- \ No newline at end of file diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index f9f0eb6dc..d108908c1 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -118,31 +118,25 @@ const config = { }, items: [ // Navbar left - // { - // type: "docSidebar", - // sidebarId: "featuresSidebar", - // position: "left", - // label: "Platform", - // }, - { - type: "docSidebar", - sidebarId: "companySidebar", - position: "left", - label: "Company", - }, - // Navbar right { type: "docSidebar", sidebarId: "guidesSidebar", - position: "right", + position: "left", label: "User Guides", }, { type: "docSidebar", sidebarId: "devSidebar", - position: "right", + position: "left", label: "Developer", }, + // Navbar right + { + type: "docSidebar", + sidebarId: "aboutSidebar", + position: "right", + label: "About", + }, ], }, prism: { diff --git a/docs/sidebars.js b/docs/sidebars.js index cd5f7721b..a260dfee0 100644 --- a/docs/sidebars.js +++ b/docs/sidebars.js @@ -110,7 +110,7 @@ const sidebars = { // }, ], - companySidebar: [ + aboutSidebar: [ // { // type: "category", // label: "About Jan", @@ -126,6 +126,10 @@ const sidebars = { // }, // ], // }, + { + type: "doc", + id: "about/about", + }, { type: "category", label: "Events", @@ -139,14 +143,20 @@ const sidebars = { }, ], }, - // { - // type: "category", - // label: "Company Handbook", - // collapsible: true, - // collapsed: true, - // link: { type: "doc", id: "handbook/handbook" }, - // items: ["handbook/remote-work"], - // }, + { + type: "category", + label: "Company Handbook", + collapsible: true, + collapsed: true, + link: { type: "doc", id: "handbook/handbook" }, + items: [ + { + type: "category", + label: "Engineering", + items: ["handbook/engineering/internal"], + }, + ], + }, ], };