-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.config.tsx
55 lines (51 loc) · 1.76 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
52
53
54
55
import React from 'react'
import { DocsThemeConfig } from 'nextra-theme-docs'
const config: DocsThemeConfig = {
logo: (
<div style={{ display: "flex", justifyContent:"center", alignItems:"center"}}>
<img src="img/reelogo.ico" style={{ display: "inline-block", width: "28px"}}></img>
<h5 style={{ marginLeft: "8px"}}><b>Reeodev</b></h5>
</div>
),
project: {
link: 'https://github.com/reeodev/reeodev.github.io',
},
darkMode: false,
docsRepositoryBase: 'https://github.com/reeodev/reeodev.github.io',
head: (
<>
<title>Reeodev</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="Reeodev" />
<meta property="og:description" content="For your design and development references." />
<meta property="og:locale" content="en_GB"/>
<meta property="og:type" content="website"/>
<meta property="og:image" content="https://reeodev.github.io/img/reelogo.ico"/>
<meta property="og:image:alt" content="Studio logo"/>
<meta name="google-site-verification" content="ZjKwH4Y06oZBJxZFRbUfuSlxseG-qkijElmiTJqDXB4" />
<link rel="mask-icon" href="img/reelogo.ico" color="#5bbad5"></link>
<link rel="icon" type="image/x-icon" href="/img/reelogo.ico"></link>
<meta property="og:url" content="https://reeodev.github.io/"></meta>
</>
),
footer: {
text: <span>Copyright © Reeodev {new Date().getFullYear()} - All Rights Reserved</span>,
},
editLink: {
text : null
},
feedback: {
content: null
},
sidebar: {
defaultMenuCollapseLevel: 1
},
primaryHue: { dark: 68, light: 200 },
// gitTimestamp: true,
useNextSeoProps() {
return {
titleTemplate: 'Reeodev | %s'
}
}
}
export default config