forked from illacloud/illa-doc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
40 lines (37 loc) · 1.45 KB
/
sidebars.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
tutorialSidebar: [
{
type: 'category',
label: 'build_apps',
link: {
type: 'doc',
id: "about-illa"
},
items: [
{
type: 'category',
label: 'components',
items: ["bar-progress", "button", "cascader", "circle-progress", "container", "date", "date-range", "date-time", "divider", "editable-text", "event-calendar", "form", "icon", "image", "input", "list", "menu", "modal", "multi-select", "number-input", "page", "pdf", "radio-button", "radio-group", "rate", "select", "statistics", "switch", "table", "tabs", "text", "text-area-input", "time-picker", "time-range", "timeline", "upload", "video"]
},
{
type: 'category',
label: 'resources',
items: ["airtable", "amazons3", "appwrite", "clickhouse", "elastic-search", "firebase", "hugging-face-api", "hugging-face-endpoint", "hydra", "mariadb", "microsoft-sql", "mongodb", "mysql", "neon", "oracledb", "postgresql", "redis", "restapi", "snowflake", "supabase", "tidb", "transformer", "upstash"]
},
{
type: 'category',
label: 'JavaScript_and_Event_handler',
items: ["run-script", "event-handler"]
}
]
},
{
type: 'category',
label: 'ILLA_with_ai',
items: ["ai-agent"]
},
],
};
module.exports = sidebars;