-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.config.tsx
More file actions
67 lines (65 loc) · 1.45 KB
/
theme.config.tsx
File metadata and controls
67 lines (65 loc) · 1.45 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
56
57
58
59
60
61
62
63
64
65
66
67
import React from 'react'
const config = {
logo: (
<span>
<img
src="/img/logo.svg"
alt="Raven House Logo"
height="32"
style={{ marginRight: '8px' }}
/>
</span>
),
project: {
link: 'https://github.com/satyambnsal/docs.ravenhouse',
},
docsRepositoryBase: 'https://github.com/satyambnsal/docs.ravenhouse/tree/main',
footer: {
text: `© ${new Date().getFullYear()} Raven House. All rights reserved.`,
},
head: (
<>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<meta
name="description"
content="Raven House documentation"
/>
<meta
name="og:title"
content="Raven House: Privacy-focused NFT Marketplace"
/>
</>
),
useNextSeoProps() {
return {
titleTemplate: '%s - Raven House Docs',
}
},
// banner: {
// key: 'aztec-testnet',
// text: '⚠️ Raven House is currently running on Aztec Testnet. Use with caution.',
// },
sidebar: {
titleComponent({ title, type }) {
if (type === 'separator') {
return <span className="cursor-default">{title}</span>
}
return <>{title}</>
},
defaultMenuCollapseLevel: 1,
toggleButton: true,
},
primaryHue: 275.59,
navigation: {
prev: true,
next: true,
},
feedback: {
content: 'Question? Give us feedback →',
labels: 'feedback',
},
}
export default config