forked from gobackup/gobackup.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.config.jsx
53 lines (53 loc) · 1.19 KB
/
theme.config.jsx
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
export default {
useNextSeoProps() {
return {
titleTemplate: '%s – GoBackup',
};
},
primaryHue: {
dark: 215,
light: 222,
},
sidebar: {
defaultMenuCollapseLevel: 3,
titleComponent: ({ title, type }) => {
return <div className="text-gray-700 dark:text-gray-100">{title}</div>;
},
},
head: (
<>
<link
rel="icon"
type="image/png"
href="https://user-images.githubusercontent.com/5518/205909959-12b92929-4ac5-4bb5-9111-6f9a3ed76cf6.png"
></link>
<meta
name="description"
content="GoBackup is a simple tool for backup your databases, files to cloud storages."
></meta>
</>
),
logo: (
<>
<img
src="/logo/web-logo.png"
className="dark:hidden"
style={{ height: '36px' }}
alt="GoBackup"
/>
<img
src="/logo/web-logo-dark.png"
className="hidden dark:block"
style={{ height: '36px' }}
alt="GoBackup"
/>
</>
),
feedback: false,
footer: <></>,
docsRepositoryBase:
'https://github.com/gobackup/gobackup.github.io/edit/main',
project: {
link: 'https://github.com/gobackup/gobackup',
},
};