-
Notifications
You must be signed in to change notification settings - Fork 0
/
vocs.config.ts
108 lines (102 loc) · 2.14 KB
/
vocs.config.ts
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
import { defineConfig } from 'vocs'
export default defineConfig({
logoUrl: {
light: '/logo/logo-light.svg',
dark: '/logo/logo-dark.svg'
},
iconUrl: '/img/favicon.ico',
title: 'ZenGuard | Documentation',
sidebar: [
{
text: 'Introduction',
link: '/introduction',
},
{
text: 'Build Modules',
collapsed: false,
items: [
{
text: 'Getting Started',
link: '/getting-started/build-modules',
},
{
text: 'Interoperable Modules',
link: '/getting-started/interoperable-spec',
},
{
text: 'Build using ERC-7579',
link: '/getting-started/erc-7579',
},
{
text: 'Build ERC-7579 validator',
link: '/getting-started/building-7579-validator',
},
{
text: 'Build using ERC-6900',
link: '/getting-started/erc-6900',
}
],
},
{
text: 'Publish Modules',
collapsed: true,
items: [
{
text: 'Publish Module',
link: '/publish/publish-modules',
},
],
},
{
text: 'Audit Modules',
collapsed: true,
items: [
{
text: 'Audit Module',
link: '/audit/audit-modules',
},
],
},
{
text: 'Explore Modules',
link: '/explore-modules',
},
{
text: 'Integrate Modules',
collapsed: true,
items: [
{
text: 'Getting Started',
link: '/integrate/integrate-modules',
},
],
},
{
text: 'Account Abstraction',
collapsed: true,
items: [
{
text: 'Basics of AA',
link: '/aa-guide/intro',
},
],
},
],
topNav: [
{ text: 'Dashboard', link: 'https://dashboard.zenguard.xyz' },
{ text: 'Explore Modules', link: 'https://explore.zenguard.xyz' },
],
socials: [
{
icon: 'github',
link: 'https://github.com/zenguardxyz',
},
{
icon: 'x',
link: 'https://x.com/zenguardxyz',
},
],
theme: {
accentColor: {light: '#709D60', dark: "#7CC562"},
}
})