Skip to content

Commit dc21431

Browse files
committed
reorganize docs
1 parent 0fdfc67 commit dc21431

File tree

3 files changed

+242
-228
lines changed

3 files changed

+242
-228
lines changed

docs/app/docs/cloud/sidebar.ts

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
2+
3+
const cloudSidebar: SidebarsConfig = {
4+
sidebar: [
5+
{
6+
type: "category",
7+
label: "Managing your Team",
8+
items: [
9+
{
10+
type: "autogenerated",
11+
dirName: "cloud/dashboard",
12+
},
13+
],
14+
},
15+
{
16+
type: "category",
17+
label: "Caching your Project Packages with Jetify Cache",
18+
items: [
19+
{
20+
type: "autogenerated",
21+
dirName: "cloud/cache",
22+
},
23+
],
24+
},
25+
{
26+
type: "category",
27+
label: "Syncing and Managing Secrets with Jetify Secrets",
28+
items: [
29+
{
30+
type: "autogenerated",
31+
dirName: "cloud/secrets",
32+
},
33+
],
34+
},
35+
{
36+
type: "category",
37+
label: "Deploying your Project with Jetify Deployments",
38+
items: [
39+
{
40+
type: "autogenerated",
41+
dirName: "cloud/deploys",
42+
},
43+
],
44+
},
45+
{
46+
type: "doc",
47+
id: "cloud/faq",
48+
},
49+
],
50+
};
51+
52+
export default cloudSidebar.sidebar;

0 commit comments

Comments
 (0)