-
Notifications
You must be signed in to change notification settings - Fork 5
/
theme.config.tsx
74 lines (72 loc) · 1.91 KB
/
theme.config.tsx
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
68
69
70
71
72
73
74
import React from "react";
import { DocsThemeConfig } from "nextra-theme-docs";
import { Logo } from "./src/components/logo";
import { Footer } from "./src/components/footer";
const config: DocsThemeConfig = {
logo: <Logo />,
search: {
placeholder: "Search docs...",
},
project: {
link: "https://github.com/proto-kit",
},
chat: {
link: "https://x.com/proto_kit",
icon: <div className="text-2xl">𝕏</div>,
},
docsRepositoryBase: "https://github.com/proto-kit/website/tree/main/",
footer: {
component: <Footer />,
},
themeSwitch: {
component: null,
},
toc: {
extraContent: undefined,
backToTop: true,
},
editLink: {},
feedback: {
content: null,
},
sidebar: {
toggleButton: true,
},
head: null,
useNextSeoProps() {
return {
titleTemplate: "%s – Protokit",
canonical: "https://protokit.dev",
title:
"Protocol development framework for privacy enabled application chains",
description:
"Protokit enables developers to build zero-knowledge, interoperable and privacy preserving application chains with a minimal learning curve.",
openGraph: {
type: "website",
title: "Protokit",
description:
"Protokit enables developers to build zero-knowledge, interoperable and privacy preserving application chains with a minimal learning curve.",
images: [
{
url: "https://protokit.dev/og.png",
width: 1200,
height: 630,
alt: "Protokit OG Image",
},
],
},
additionalLinkTags: [
{
rel: "shortcul icon",
href: "/logo-symbol.svg",
},
],
};
},
primaryHue: { light: 28, dark: 28 },
};
export default {
...config,
stackblitzUrl:
"https://stackblitz.com/github/proto-kit/starter-kit?file=packages%2Fchain%2Ftest%2Fbalances.test.ts&startScript=test",
};