-
Notifications
You must be signed in to change notification settings - Fork 2
/
theme.config.jsx
76 lines (74 loc) · 1.62 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import React from 'react'
import Logo from 'components/logo'
const config = {
logo: <Logo />,
darkMode: false,
nextThemes: {
defaultTheme: 'dark',
},
project: {
link: process.env.NEXT_PUBLIC_GITHUB_LINK,
},
chat: {
link: process.env.NEXT_PUBLIC_DISCORD_LINK,
},
feedback: {
content: 'Submit feedback',
},
docsRepositoryBase: 'https://github.com/stakersunion/docs/tree/main/',
useNextSeoProps() {
return {
titleTemplate: '%s – Stakers Union',
}
},
head: (
<>
<meta
name='viewport'
content='width=device-width, initial-scale=1.0'
/>
<meta
property='og:title'
content='Stakers Union: Documentation'
/>
<meta
property='og:description'
content='A documentation site for the Stakers Union proposal.'
/>
<meta
property='og:image'
content='https://www.stakersunion.com/logo.png'
/>
<meta
property='og:url'
content='https://docs.stakersunion.com/'
/>
<meta
property='og:type'
content='website'
/>
<meta
name='twitter:card'
content='summary_large_image'
/>
<meta
name='twitter:title'
content='Stakers Union: Documentation'
/>
<meta
name='twitter:description'
content='A documentation site for the Stakers Union proposal.'
/>
<meta
name='twitter:image'
content='https://www.stakersunion.com/logo.png'
/>
</>
),
primaryHue: 0,
primarySaturation: 0,
footer: {
text: 'Stakers Union',
},
}
export default config