-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy paththeme.config.tsx
More file actions
36 lines (33 loc) · 841 Bytes
/
theme.config.tsx
File metadata and controls
36 lines (33 loc) · 841 Bytes
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
import React from "react";
import { DocsThemeConfig } from "nextra-theme-docs";
const config: DocsThemeConfig = {
project: {
link: "https://github.com/denepo/denepo.github.io",
},
docsRepositoryBase: "https://github.com/denepo/denepo.github.io/blob/main",
editLink: {
text: 'Edit this page on GitHub'
},
footer: {
text: "You can save any page as a PDF by opening it, ctr-p, then opening the document instead of printing it.",
},
sidebar: {
defaultMenuCollapseLevel: 2,
},
logo: (
<>
<img src="/denepo-logo-white.png" width="50em" height="50em" />
<span style={{ marginLeft: ".5em", fontWeight: 800 }}>
De Nepo: Open Ed
</span>
</>
),
search: {
placeholder: "search this page",
},
primaryHue: {
dark: 310,
light: 252,
},
};
export default config;