-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
70 lines (60 loc) · 2.45 KB
/
Copy pathsidebars.js
File metadata and controls
70 lines (60 loc) · 2.45 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// @ts-check
// This runs in Node.js - Don't use client-side code here (browser APIs, JSX...)
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
@type {import('@docusaurus/plugin-content-docs').SidebarsConfig}
*/
const sidebars = {
apiSidebar: [
{
type: 'category',
label: 'Omni API',
items: [
'intro',
'login-tokens',
'api',
'image-api',
'chat-api',
'credits-api',
{
type: 'category',
label: 'Fonts',
link: {
type: 'doc',
id: 'fonts',
},
items: [
{ type: 'link', label: 'Default (default)', href: '/fonts#default' },
{ type: 'link', label: 'English (en)', href: '/fonts#en' },
{ type: 'link', label: 'French (fr)', href: '/fonts#fr' },
{ type: 'link', label: 'Spanish (es)', href: '/fonts#es' },
{ type: 'link', label: 'German (de)', href: '/fonts#de' },
{ type: 'link', label: 'Portuguese (pt)', href: '/fonts#pt' },
{ type: 'link', label: 'Italian (it)', href: '/fonts#it' },
{ type: 'link', label: 'Dutch (nl)', href: '/fonts#nl' },
{ type: 'link', label: 'Swedish (sv)', href: '/fonts#sv' },
{ type: 'link', label: 'Russian (ru)', href: '/fonts#ru' },
{ type: 'link', label: 'Japanese (ja)', href: '/fonts#ja' },
{ type: 'link', label: 'Korean (ko)', href: '/fonts#ko' },
{ type: 'link', label: 'Thai (th)', href: '/fonts#th' },
{ type: 'link', label: 'Arabic (ar)', href: '/fonts#ar' },
{ type: 'link', label: 'Bengali (bn)', href: '/fonts#bn' },
{ type: 'link', label: 'Hindi (hi)', href: '/fonts#hi' },
{ type: 'link', label: 'Hebrew (he)', href: '/fonts#he' },
{ type: 'link', label: 'Latin (la)', href: '/fonts#la' },
{ type: 'link', label: 'Sanskrit (sa)', href: '/fonts#sa' },
{ type: 'link', label: 'Chinese (zh)', href: '/fonts#zh' },
{ type: 'link', label: 'Chinese (zh-cn)', href: '/fonts#zh-cn' },
{ type: 'link', label: 'Chinese (zh-tw)', href: '/fonts#zh-tw' },
],
},
],
},
],
};
export default sidebars;