-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththeme.config.jsx
81 lines (77 loc) · 2.68 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
77
78
79
80
81
import { useConfig } from 'nextra-theme-docs'
export default {
project: { link: 'https://github.com/yehezkielgunawan' },
docsRepositoryBase:
'https://github.com/yehezkielgunawan/yehez-docs/tree/main',
useNextSeoProps() {
const { frontMatter } = useConfig()
const defaultTitle = frontMatter.overrideTitle || 'YehezGun'
return {
description: frontMatter.description,
defaultTitle,
titleTemplate: '%s - YehezGun',
}
},
darkMode: true,
logo: (
<>
<span className="text-gray-600 font-normal hidden md:inline">
YehezGun's Personal Docs
</span>
</>
),
head: () => (
<>
<meta name="msapplication-TileColor" content="#ffffff" />
<meta name="theme-color" content="#ffffff" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta httpEquiv="Content-Language" content="en" />
<meta
name="description"
content="This is my personal documentation site."
/>
<meta
name="og:description"
content="This is my personal documentation site."
/>
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:image"
content="https://og.yehezgun.com/api/base?description=A%20personal%20docs%20site%20by%20Yehezkiel%20Gunawan&logo=https%3A%2F%2Fcdn-icons-png.flaticon.com%2F512%2F1246%2F1246882.png%3Fw%3D740&siteName=docs.yehezgun.com&templateTitle=Yehez-Docs&theme=dark"
/>
<meta name="twitter:site:domain" content="docs.yehezgun.com" />
<meta name="twitter:url" content="https://docs.yehezgun.com" />
<meta name="og:title" content="Yehezkiel Gunawan's Personal Docs Site" />
<meta
name="og:image"
content="https://og.yehezgun.com/api/base?description=A%20personal%20docs%20site%20by%20Yehezkiel%20Gunawan&logo=https%3A%2F%2Fcdn-icons-png.flaticon.com%2F512%2F1246%2F1246882.png%3Fw%3D740&siteName=docs.yehezgun.com&templateTitle=Yehez-Docs&theme=dark"
/>
<link rel="manifest" href="/manifest.json" />
<meta
name="apple-mobile-web-app-title"
content="Yehezkiel Gunawan's Personal Docs Site"
/>
</>
),
navigation: {
prev: true,
next: true,
},
footer: {
text: (
<p>
MIT {new Date().getFullYear()} ©{' '}
<a href="https://yehezgun.com" target="_blank">
Yehezkiel Gunawan
</a>{' '}
<br />
If you've found that there's some contents that needs to be updated or
fixed, feel free to email me{' '}
<a href="mailto:yehezkiel.gunawan28@gmail.com?subject=docs.yehezgun.com">
<b>here</b>
</a>
</p>
),
},
faviconGlyph: '📗',
}