-
Notifications
You must be signed in to change notification settings - Fork 1
/
theme.config.jsx
92 lines (80 loc) · 2.9 KB
/
theme.config.jsx
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
import { Link } from "nextra-theme-docs";
export default {
docsRepositoryBase: 'https://github.com/dappros/ethora-docs',
project: {
link: 'https://github.com/dappros/ethora'
},
logo: (
<>
<img src="https://www.ethora.com/images/ethora-logo-new.png" alt="Ethora Logo" width="130px" />
</>
),
logoLink: "https://ethora.com",
head: (
<>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<meta name="title" content="Ethora Documentation" />
<meta name="description" content="Ethora is low-code and highly customisable which means you can launch your own branded app into appstore in no time. Follow the documentation for more insights." />
<link rel="icon" href="https://www.ethora.com/images/favicon_io/favicon.ico" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://docs.ethora.com/" />
<meta property="og:title" content="Ethora Documentation" />
<meta property="og:description" content="Ethora is low-code and highly customisable which means you can launch your own branded app into appstore in no time. Follow the documentation for more insights." />
<meta property="og:image" content="/og-ethora.png" />
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://docs.ethora.com/" />
<meta property="twitter:title" content="Ethora Documentation" />
<meta property="twitter:description" content="Ethora is low-code and highly customisable which means you can launch your own branded app into appstore in no time. Follow the documentation for more insights." />
<meta property="twitter:image" content="/og-ethora.png" />
{/* Google Analytics */}
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9JG0SFFM5L"></script>
<script
dangerouslySetInnerHTML={{
__html: `
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-9JG0SFFM5L');
`,
}}
/>
</>
),
useNextSeoProps() {
return {
titleTemplate: 'Ethora Docs - %s'
}
},
banner: {
key: 'mvp-contact',
text: (
<a href="https://www.ethora.com/#contact" target="_blank">
Would you like to get your MVP delivered within 2 weeks? Contact us 📩
</a>
)
},
feedback:{
content: "Questions? Visit our forum",
useLink: ()=>"https://forum.ethora.com/"
},
editLink:{
component: null
},
chat: {
link: 'https://discord.gg/6UcTnDmW3B'
},
sidebar: {
toggleButton: true
},
footer: {
text: (
<span>
MIT {new Date().getFullYear()} ©{' '}
<a href="https://www.ethora.com" target="_blank">
Ethora
</a>
.
</span>
)
}
};