This repository has been archived by the owner on Aug 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.config.js
40 lines (39 loc) · 1.63 KB
/
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
33
34
35
36
37
38
39
40
export default {
github: 'https://github.com/grizzlybots11918/updates', // link of the project repo
siteGithub: 'https://github.com/grizzlybots11918/updates', // link of the docs repo path
titleSuffix: ' – Grizzly Bots',
nextLinks: true,
prevLinks: true,
search: true,
customSearch: null, // <- customizable, you can use algolia for example
darkMode: true,
footer: true,
footerText: 'MIT 2020 © Grizzly Bots 11918',
footerEditOnGitHubLink: true, // will link to the docs repo
logo: (
<Logo/>
),head: (
<React.Fragment>
<meta name="msapplication-TileColor" content="#ffffff" />
<meta name="theme-color" content="#ffffff" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta httpEquiv="Content-Language" content="en" />
<meta name="description" content="See updates for FTC team 11918, Grizzly Bots." />
<meta name="og:description" content="See updates for FTC team 11918, Grizzly Bots." />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@GlennHSRobotics" />
<meta name="og:title" content="See updates for FTC team 11918, Grizzly Bots." />
<meta name="apple-mobile-web-app-title" content="Grizzly Bots Team Updates" />
</React.Fragment>
)
}
function Logo() {
return (
<span>
<span className="mr-2 font-extrabold hidden md:inline">Grizzly Bots</span>
<span className="text-gray-600 font-normal hidden md:inline">
Team Updates
</span>
</span>
)
}