-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy paththeme.config.jsx
32 lines (31 loc) · 1.3 KB
/
theme.config.jsx
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
import logo from './logo-distributedpress.png'
export default {
docsRepositoryBase: 'https://github.com/hyphacoop/docs.distributed.press/tree/main/',
logo: <img style={{ height: '2em' }} src={logo.src} />,
logoLink: 'https://docs.distributed.press',
project: {
link: 'https://github.com/hyphacoop/api.distributed.press'
},
nextThemes: {
defaultTheme: 'light'
},
sidebar: {
defaultMenuCollapseLevel: 2
},
footer: {
text: <div>
<p><a href='https://hypha.coop' target='_blank' rel='noreferrer'>Hypha Worker Co-operative Inc.</a> {new Date().getFullYear()} ©</p>
<p>Hypha acknowledges the sacred land we work on is the territory of many nations and was the subject of the Dish with One Spoon Wampum Belt Covenant, an agreement to peaceably share and care for the resources around the Great Lakes. Today it is still home to many First Nations, Inuit, and Métis peoples from across Turtle Island.</p>
</div>
},
useNextSeoProps () {
return {
titleTemplate: '%s – Distributed Press'
}
},
head: (<>
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
<link rel='icon' type='image/x-icon' href='/img/favicon-96x96.png' />
<script defer data-domain='docs.distributed.press' src='https://analytics.hypha.coop/js/script.js' />
</>)
}