-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvocs.config.tsx
118 lines (117 loc) · 2.1 KB
/
vocs.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
import { defineConfig } from "vocs";
export default defineConfig({
rootDir: "./",
description: "Your onchain agent",
banner: {
dismissable: true,
backgroundColor: "cyan",
content: "Head to our new [Discord](https://discord.gg/PFHZa7KPPc)!",
height: "38px",
textColor: "white",
},
title: "NANI",
baseUrl: "https://docs.nani.ooo",
blogDir: "./pages/blog",
editLink: {
pattern: "https://github.com/NaniDAO/nocs/edit/main/:path",
text: "Edit on GitHub",
},
iconUrl: "/favicon.svg",
logoUrl: "/logo.svg",
markdown: {
code: {
themes: {
light: "vitesse-light",
dark: "vitesse-dark",
},
},
},
font: {
default: {
google: "Inter",
},
mono: {
google: "JetBrains Mono",
},
},
sidebar: [
{
text: "Getting Started",
link: "/docs/",
},
{
text: "Contracts",
link: "/docs/contracts",
},
{
text: "Account",
link: "/docs/account",
},
{
text: "Accounts",
link: "/docs/accounts",
},
{
text: "Create Account",
link: "/docs/create-account",
},
{
text: "Navigating OS",
link: "/docs/navigating-os"
},
{
text: "DAO",
link: "/docs/dao",
},
{
text: "IE",
link: "/docs/ie",
},
{
text: "NEETH",
link: "/docs/neeth",
},
{
text: "Text Commands",
link: "/docs/text-commands",
},
{
text: "Token",
link: "/docs/token",
},
{
text: "Tokenomics",
link: "/docs/tokenomics",
},
{
text: "xNANI",
link: "/docs/xnani",
},
{
text: "Bounties",
link: "/docs/bounties",
},
],
socials: [
{
icon: "discord",
link: "https://discord.gg/PFHZa7KPPc",
},
{
icon: "github",
link: "https://github.com/NaniDAO",
},
{
icon: "telegram",
link: "https://t.me/+NKbETPq0J9UyODk9",
},
{
icon: "x",
link: "https://x.com/nani__ooo",
},
{
icon: "warpcast",
link: "https://warpcast.com/nani",
},
],
});