-
Notifications
You must be signed in to change notification settings - Fork 15
/
theme.config.tsx
43 lines (40 loc) · 1.02 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
import React from "react";
import { DocsThemeConfig } from "nextra-theme-docs";
import Footer from "./components/footer";
import { SpheronLogo } from "./assets/spheron";
import { GithubLogo } from "./assets/github";
import { CommunityLogo } from "./assets/community";
import styles from "./styles/global.module.css";
const config: DocsThemeConfig = {
logo: <>{SpheronLogo}</>,
project: {
link: "https://github.com/spheronFdn/docs",
icon: <div className={styles.linkIcon}>{GithubLogo}</div>,
},
chat: {
link: "https://community.spheron.network/",
icon: <div className={styles.linkIcon}>{CommunityLogo}</div>,
},
editLink: {
text: null,
},
feedback: {
content: null,
},
footer: {
text: <Footer />,
},
navigation: false,
primaryHue: 200,
sidebar: {
defaultMenuCollapseLevel: 1,
},
useNextSeoProps() {
return {
titleTemplate: "%s – Spheron",
description:
"Power your dapp with Spheron's next-generation infrastructure",
};
},
};
export default config;