-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.config.js
42 lines (41 loc) · 1 KB
/
theme.config.js
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 Logo from "./components/Logo";
// theme.config.js
// eslint-disable-next-line import/no-anonymous-default-export
export default {
project: {
link: "https://github.com/lucky-media/guidelines",
},
useNextSeoProps() {
return {
titleTemplate: "%s – Guide",
};
},
docsRepositoryBase: "https://github.com/lucky-media/guidelines/blob/master", // base URL for the docs repository
darkMode: true,
footer: {
text: `MIT ${new Date().getFullYear()} © Lucky Media.`,
},
sidebar: {
defaultMenuCollapseLevel: 1,
},
logo: (
<>
<Logo />
</>
),
logoLink: "/",
search: {
placeholder: "Search...",
},
head: (
<>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Lucky Media Developer Guide" />
<meta name="og:title" content="Lucky Media Developer Guide" />
<meta
name="og:image"
content="https://guidelines.luckymedia.dev/meta.jpeg"
/>
</>
),
};