generated from shuding/nextra-docs-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.config.tsx
57 lines (55 loc) · 1.25 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
56
57
import React from "react";
import { DocsThemeConfig } from "nextra-theme-docs";
const config: DocsThemeConfig = {
// logo: <span>My Project</span>,
logo: (
<span
style={{
display: "flex",
flexDirection: "row",
alignItems: "center",
fontWeight: "bold",
fontSize: "1.5rem",
}}
>
<img src="/logo.png" height="40px" width="40px" />
EnvStore
</span>
),
project: {
link: "https://github.com/env-store/envs",
},
chat: {
link: "https://discord.gg/VyUGazafyx",
},
docsRepositoryBase: "https://github.com/env-store/docs",
footer: {
text: (
<span>
<style>
{`
.footerlink {
color: #fff;
text-decoration: none;
}
.footerlink:hover {
color: #fff;
text-decoration: underline;
}
`}
</style>
MIT 2023 © EnvStore | EnvStore documentation and project is licensed
under the{" "}
<a
target="_blank"
className="footerlink"
href="https://github.com/env-store/docs/blob/main/LICENSE"
>
MIT License
</a>
.
</span>
),
},
};
export default config;