-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy paththeme.config.tsx
More file actions
30 lines (28 loc) · 838 Bytes
/
theme.config.tsx
File metadata and controls
30 lines (28 loc) · 838 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
import React from "react";
import { DocsThemeConfig } from "nextra-theme-docs";
import Footer from "./components/Footer";
import { HeadComponent } from "./components/HeadComponent";
import { MemgraphLogo } from "./components/icons/MemgraphLogo";
const config: DocsThemeConfig = {
logo: MemgraphLogo,
darkMode: true,
logoLink: "https://memgraph.com",
project: {
link: "https://github.com/memgraph/memgraph",
},
chat: {
link: "https://discord.gg/memgraph",
},
docsRepositoryBase: "https://github.com/memgraph/documentation/tree/main",
footer: { component: Footer},
head: HeadComponent,
sidebar: {
defaultMenuCollapseLevel: 1,
autoCollapse: true,
toggleButton: false
},
navigation: true,
gitTimestamp: true,
backgroundColor: { light: "#FFFFFF", dark: "#231F20" },
};
export default config;