-
Notifications
You must be signed in to change notification settings - Fork 11
/
docusaurus.navbar.config.js
68 lines (68 loc) · 2.14 KB
/
docusaurus.navbar.config.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
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
module.exports = {
title: 'beyondstorage',
logo: {
alt: 'Beyond Storage',
src: 'img/logo.svg',
},
items: [
{
label: 'Projects',
position: 'left',
items: [
{label: 'go-storage', href: 'https://github.com/beyondstorage/go-storage'},
{label: 'BeyondTP', href: 'https://github.com/beyondstorage/beyond-tp'},
],
},
{
label: 'Community',
position: 'left',
items: [
{label: 'Activity', to: 'community'},
{label: 'Forum', href: 'https://forum.beyondstorage.io'},
],
},
{
to: 'docs',
label: 'Docs',
position: 'left',
items: [
{label: 'General', to: '/docs/general'},
{label: 'go-storage', to: '/docs/go-storage'},
{label: 'BeyondCTL', to: '/docs/beyond-ctl'},
{label: 'BeyondTP', to: '/docs/beyond-tp'},
{label: 'BeyondFS', to: '/docs/beyond-fs'},
{label: 'BeyondFTP', to: '/docs/beyond-ftp'},
],
},
{to: 'blog', label: 'Blog', position: 'left'},
{
type: 'localeDropdown',
position: 'right',
className: 'navbar__item--language',
dropdownItemsAfter: [
{
to: 'https://crowdin.beyondstorage.io/site',
label: 'Help Us Translate',
},
],
},
{
href: 'https://matrix.to/#/#beyondstorage@campfire:matrix.org',
position: 'right',
className: 'navbar__link--matrix',
'aria-label': 'Matrix',
},
{
href: 'https://twitter.com/beyond_storage',
position: 'right',
className: 'navbar__link--twitter',
'aria-label': 'Twitter',
},
{
href: 'https://github.com/beyondstorage',
position: 'right',
className: 'navbar__link--github',
'aria-label': 'GitHub repository',
},
],
};