-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.config.js
32 lines (32 loc) · 1013 Bytes
/
theme.config.js
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
export default {
project: { link: 'https://github.com/neighbor-ryan/ebikes', }, // GitHub link in the navbar
docsRepositoryBase: 'https://github.com/neighbor-ryan/ebikes', // base URL for the docs repository
titleSuffix: ' - E-bikes are a Transportation Revolution',
toc: {
float: false,
},
navigation: {
next: true,
prev: true,
},
unstable_flexsearch: {
codeblocks: true,
},
search: { placeholder: "Search pages", },
// darkMode: true,
footer: { text: "", },
editLink: { text: `Edit this page on GitHub`, },
logo: (
<>
<img src={"favicon.ico"} />
<span>E-bikes are a Transportation Revolution</span>
</>
),
head: (
<>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
{/*<meta name="description" content="" />*/}
<meta name="og:title" content="E-bikes are a Transportation Revolution" />
</>
),
}