-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathnavbar-docs-items.ts
55 lines (54 loc) · 1.4 KB
/
navbar-docs-items.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
/*
* This file is part of the xPack project (http://xpack.github.io).
* Copyright (c) 2024 Liviu Ionescu. All rights reserved.
*
* Permission to use, copy, modify, and/or distribute this software
* for any purpose is hereby granted, under the terms of the MIT license.
*
* If a copy of the license was not distributed with this file, it can
* be obtained from https://opensource.org/license/mit.
*/
export const customDocsNavbarItem = {
type: 'dropdown',
label: 'Documentation',
to: 'docs/getting-started',
position: 'left',
items: [
{
label: 'Getting Started',
to: '/docs/getting-started'
},
{
label: 'Install Guide',
to: '/docs/install'
},
{
label: 'User\'s Guide',
to: '/docs/user'
},
{
label: 'Package Author\'s Guide',
to: '/docs/guide'
},
{
label: 'Contributor\'s Guide',
to: '/docs/developer'
},
{
label: 'Maintainer\'s Guide',
to: '/docs/maintainer'
},
{
label: 'Help Centre',
to: '/docs/support'
},
{
label: 'Releases',
to: '/docs/releases'
},
{
label: 'About',
to: '/docs/project/about'
}
],
}