-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.config.jsx
More file actions
79 lines (67 loc) · 1.99 KB
/
Copy paththeme.config.jsx
File metadata and controls
79 lines (67 loc) · 1.99 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
71
72
73
74
75
76
77
78
79
export default {
// Project link configuration
project: {
link: 'https://github.com/OpenVirtualCluster', // GitHub repo URL
},
// Website logo
logo: (
<span>
My Docs Website
<span style={{ color: 'transparent', marginLeft: '0.3rem' }}>▪</span>
</span>
),
// Show "Last Updated" time for each page
gitTimestamp: null,
// Footer text
footer: (
<small>
<span>© {new Date().getFullYear()} Your Company Name. All rights reserved.</span>
<a href="https://openvirtualcluster.dev" target="_blank">
Your Company Website
</a>
</small>
),
// Customize the main navigation menu
navs: [
{
url: 'https://github.com/OpenVirtualCluster/virtual-cluster-operator',
name: 'Operator',
},
{
url: 'https://github.com/OpenVirtualCluster/dashboard',
name: 'Dashboard',
},
{
url: 'https://github.com/OpenVirtualCluster/cli',
name: 'CLI',
},
// Add more nav links here
],
// Customize the sidebar navigation menu
sidebar: {
defaultMenuCollapseLevel: 2, // Expand/collapse sidebar navigation menu by default
},
// Customize the table of contents (TOC)
toc: {
float: true, // Make the TOC float over the page content
},
// Customize the search behavior
search: {
placeholder: 'Search documentation...',
},
// Customize the primary color
primaryHue: 204, // Change the primary color hue (0-360)
// Add a chat link in the top right corner
chat: {
link: 'https://discord.gg/uBX8j9mnu6', // Discord invite link
},
// Add an edit link in the top right corner
editLink: {
text: 'Edit this page on GitHub',
},
// Add a feedback link in the top right corner
feedback: {
content: 'Question? Give feedback →',
labels: 'feedback', // GitHub issue labels for collected feedback
},
}