-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.config.tsx
42 lines (39 loc) · 978 Bytes
/
theme.config.tsx
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
import React from 'react'
const styles = {
pl: {
paddingLeft: '10%'
},
right: {
textAlign: 'right'
},
} as const;
const config = {
head: (
<React.Fragment>
<meta name="description" content="Medieval geopolitics in Minecraft" />
<meta property="og:title" content="Medieval geopolitics in Minecraft" />
<meta property="og:description" content="Medieval geopolitics in Minecraft" />
<meta name="apple-mobile-web-app-title" content="Mvndicraft" />
<link rel="icon" type="image/png" href="/favicon.png"/>
</React.Fragment>
),
useNextSeoProps() {
return {
titleTemplate: '%s – Mvndicraft'
}
},
logo: <><img src="/favicon.png" alt="favicon" width="32"/> <span style={styles.pl}>Mvndicraft</span></>,
chat: {
link: 'https://discord.gg/2BP6h8Ssta',
},
editLink: {
text: null,
},
feedback: {
content: null,
},
footer: {
text: "MVNDICRAFT @ 2024"
},
}
export default config