-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.config.jsx
More file actions
69 lines (68 loc) · 1.92 KB
/
theme.config.jsx
File metadata and controls
69 lines (68 loc) · 1.92 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
import Image from 'next/image'
export default {
/*banner: {
key: '2.0-release',
text: (
<a href="https://nextra.site" target="_blank">
🎉 Arke Client 2.0 is released. Read more →
</a>
)
},*/
sidebar: {
defaultMenuCollapseLevel: 1,
autoCollapse: true
},
primaryHue: 165,
primarySaturation: 75,
project: {
link: 'https://github.com/arkemishub'
},
logo:
<div style={{display:'flex', alignItems:'center', gap: 4}}>
<div>
<Image src="/arke.svg" alt="arke" width={24} height={24} />
</div>
<div style={{ fontSize: 16, marginLeft: 8, fontWeight: 700 }}>
Arke framework
</div>
</div>,
//faviconGlyph: "/favicon/favicon.ico",
useNextSeoProps() {
return {
titleTemplate: '%s – Arke'
}
},
head: (
<>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="Arke" />
<meta property="og:description" content="The Arke Framework Docs" />
<link
rel="shortcut icon"
type="image/x-icon"
href={"/favicon/favicon.ico"}
/>
<link
rel="icon"
type="image/x-icon"
sizes="16x16"
href={"/favicon/favicon-16x16.png"}
/>
<link
rel="icon"
type="image/x-icon"
sizes="32x32"
href={"/favicon/favicon-32x32.png"}
/>
</>
),
darkMode: false,
footer: {
text: (
<span>
MIT {new Date().getFullYear()} ©{' '}
<a href="https://mokkastudios.com" target="_blank">Mokka Studios S.r.l.</a>
</span>
)
}
}