-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathvocs.config.ts
More file actions
94 lines (93 loc) · 1.84 KB
/
vocs.config.ts
File metadata and controls
94 lines (93 loc) · 1.84 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
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
import { defineConfig, type SidebarItem } from 'vocs'
export default defineConfig({
title: 'dAppBooster',
description:
'A modern starter kit built with React to quickly get started with your next web3 project.',
iconUrl: '/favicon.svg',
logoUrl: '/logo.svg',
topNav: [
{
text: 'dappbooster.dev',
link: 'https://dappbooster.dev',
},
{
text: 'demos',
link: 'https://demo.dappbooster.dev',
},
{
text: 'blog',
link: 'https://blog.bootnode.dev/',
},
],
socials: [
{
icon: 'x',
link: 'https://x.com/bootnodedev',
},
{
icon: 'github',
link: 'https://github.com/BootNodeDev/dAppBooster',
},
{
icon: 'telegram',
link: 'https://t.me/dAppBooster',
},
],
sidebar: [
{
items: [
{
text: 'Introduction',
link: '/',
},
{
text: 'Installation',
link: '/introduction/installation',
},
],
},
{
text: 'Components',
items: [
{
text: 'Introduction',
link: '/components/introduction',
},
],
},
{
text: 'Recipes',
items: [
{
text: 'My First dapp',
link: '/recipes/my-first-dapp',
},
{
text: 'Subgraphs',
link: '/recipes/subgraphs',
},
],
},
{
text: 'Advanced',
items: [
{
text: 'Subgraph plugin',
link: '/advanced/subgraph-plugin',
},
{
text: 'Networks',
link: '/advanced/networks',
},
{
text: 'Manual installation',
link: '/advanced/manual-installation',
},
{
text: 'Tech Stack',
link: '/advanced/stack',
},
],
},
] as Array<SidebarItem>,
})