-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy paththeme.config.jsx
50 lines (50 loc) · 1.44 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
export default {
logo: <img style={{"height": "30px"}} src="/logo-dark.svg" />,
project: {
link: "https://github.com/utxorpc",
},
sidebar: {
defaultMenuCollapseLevel: 1
},
chat: {
link: "https://discord.gg/Vc3x8N9nz2",
},
head: (
<>
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta name="twitter:card" content="summary_large_image" />
</>
),
docsRepositoryBase: "https://github.com/utxorpc/docs/blob/main",
useNextSeoProps() {
return {
titleTemplate: "%s – UTxO RPC",
description: "gRPC interface for UTxO blockchains",
canonical: "https://utxorpc.org",
siteName: "UTxO RPC",
openGraph: {
url: "https://utxorpc.org",
title: "UTxO RPC",
description: "gRPC interface for UTxO blockchains",
images: [
{
url: "https://utxorpc.org/og-image.png",
width: 761,
height: 508,
alt: "UTxO RPC",
type: "image/png",
}
]
},
twitter: {
site: "@utxorpc",
card: "summary_large_image",
},
};
},
footer: {
text: "UTxO RPC",
},
primaryHue: 178,
darkMode: false, //disable theme toggle
}