-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.config.tsx
51 lines (49 loc) · 1.16 KB
/
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
43
44
45
46
47
48
49
50
51
import React from "react";
import { DocsThemeConfig } from "nextra-theme-docs";
const config: DocsThemeConfig = {
useNextSeoProps() {
return {
titleTemplate: "%s - XGR Documentation",
};
},
head: (
<>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="Cross Game Renderer" />
<meta
property="og:description"
content="Cross Game Renderer: Display and animate NFTs in any game"
/>
</>
),
logo: <img src="/opg.png" />,
project: {
link: "https://github.com/alto-io/cross-game-renderer",
},
docsRepositoryBase: "https://github.com/alto-io/xgr-docs",
footer: {
text: (
<a
href="https://www.opgames.org/"
target="_blank"
rel="noopener noreferrer"
>
Made with ❤ by OP Games
</a>
)
},
primaryHue: 199,
banner: {
key: "GameDevJS",
text: (
<a
href="https://itch.io/jam/gamedevjs-2023"
target="_blank"
rel="noreferrer"
>
XGR is being used in Gamedev.js 2023. Read more →
</a>
),
},
};
export default config;