generated from do4ng/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocs.ts
82 lines (78 loc) · 1.77 KB
/
docs.ts
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
71
72
73
74
75
76
77
78
79
80
81
82
export interface Docs {
name: string;
description: string;
github: string;
index: {
content: string;
href: string;
}[];
header: Array<
| {
type: 'popover';
title: string;
children: Array<{
title: string;
href: string;
icon: string;
description?: string;
}>;
}
| { title: string; href: string; type: 'link' }
>;
}
export default {
name: 'zelyjs',
description: 'Build Productive,<br>Convenient, Fast Backend',
index: [
{
content: 'Getting Started',
href: '/docs/getting-started',
},
{
content: 'Why Zely?',
href: '/docs/why-zely',
},
],
header: [
{
title: 'Docs',
type: 'popover',
children: [
{
title: 'Installation',
href: '/docs/getting-started',
description: 'Start your fist app.',
// https://remixicon.com/icon/book-open-line
icon: 'ri-guide-line',
},
{
title: 'Docs',
href: '/docs/overview',
description: 'Learn all of information of package.',
// https://remixicon.com/icon/book-open-line
icon: 'ri-book-open-line',
},
],
},
{
title: 'Community',
type: 'popover',
children: [
{
title: 'Contribute',
href: '/docs/contributing',
description: 'thank you for your contribution.',
// https://remixicon.com/icon/book-open-line
icon: 'ri-sticky-note-line',
},
{
title: 'Blog',
href: '/blog',
description: 'Our development blog',
// https://remixicon.com/icon/book-open-line
icon: 'ri-book-open-line',
},
],
},
],
} as Docs;