forked from vercel/swr-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.config.js
37 lines (36 loc) · 908 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
33
34
35
36
37
import {RiEarthFill} from "react-icons/ri";
export default {
project: {
link:"https://multizoa.com",
icon: <RiEarthFill />,
},
// docsRepositoryBase: "https://github.com/tokenosopher/multizoa/blob/master/pages",
// search: true,
// feedbackLink: "Question? Give us feedback →",
toc: false,
logo: () => (
<>
<RiEarthFill size={20}/>
<span
className="mx-2 font-extrabold hidden md:inline select-none"
title={
"Multizoa - Explaining human society's place in the biological universe"
}
>
Multizoa
</span>
</>
),
footer: {
text: () => (
<p className="inline-flex items-center no-underline text-current font-semibold">
<span className="mr-1">Creative Commons © 2022 Multizoa</span>
</p>
)
},
useNextSeoProps() {
return {
titleTemplate: '%s – Multizoa',
}
},
};