-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy paththeme.config.tsx
More file actions
55 lines (53 loc) · 1.36 KB
/
theme.config.tsx
File metadata and controls
55 lines (53 loc) · 1.36 KB
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
import React from 'react'
import { DocsThemeConfig } from 'nextra-theme-docs'
const config: DocsThemeConfig = {
logo: (
<div style={{ display: 'flex', alignItems: 'center', gap: '8px' }}>
<img src="/images/banana_icon.png" alt="Node Banana" width={22} height={22} />
<span style={{ fontWeight: 600, fontSize: '1.25rem' }}>Node Banana</span>
</div>
),
project: {
link: 'https://github.com/shrimbly/node-banana',
},
docsRepositoryBase: 'https://github.com/shrimbly/node-banana-docs/tree/main',
footer: {
text: (
<span>
{new Date().getFullYear()} © Node Banana. Built with Nextra.
</span>
),
},
head: (
<>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Node Banana - Visual workflow editor for AI image generation" />
<meta name="og:title" content="Node Banana Documentation" />
<link rel="icon" href="/images/banana_icon.png" />
</>
),
useNextSeoProps() {
return {
titleTemplate: '%s – Node Banana'
}
},
sidebar: {
defaultMenuCollapseLevel: 1,
toggleButton: true,
},
toc: {
backToTop: true,
},
editLink: {
text: 'Edit this page on GitHub →'
},
feedback: {
content: null,
},
navigation: {
prev: true,
next: true,
},
darkMode: true,
}
export default config