-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvocs.config.tsx
128 lines (125 loc) · 3.04 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
119
120
121
122
123
124
125
126
127
128
import * as React from "react";
import { defineConfig } from "./src/index.js";
import { version } from "./create-ao-dapp/package.json";
const REPO_URL = "https://github.com/Autonomous-Finance/ao-starter-kit";
export default defineConfig({
theme: {
accentColor: {
light: "black",
dark: "white",
},
},
rootDir: "site",
basePath: "/",
title: "Create AO dApp",
logoUrl: "Create AO dApp",
ogImageUrl: "https://create-ao-dapp.ar.io/og.png",
sidebar: [
{
text: "Introduction",
link: "/introduction",
},
{
text: "Getting Started",
link: "/getting-started",
},
{
text: "Available Templates",
collapsed: false,
items: [
{
text: "Basic Lua template",
link: "/templates/lua",
},
{
text: "Lua + SQLite template",
link: "/templates/lua-sqlite",
},
{
text: "Teal Typed Lua template",
link: "/templates/teal",
},
{
text: "Teal + SQLite template",
link: "/templates/teal-sqlite",
},
],
},
{
text: "AO Process Development",
collapsed: false,
items: [
{
text: "Architecture",
link: "/process-development/architecture",
},
{
text: "Writing AO Processes",
link: "/process-development/process-design",
},
{
text: "AO Process Testing",
link: "/process-development/testing",
},
{
text: "Building AO Processes",
collapsed: false,
items: [
{
text: "Building with amalg.lua",
link: "/process-development/building-with-amalg",
},
{
text: "Building with Squish",
link: "/process-development/building-with-squish",
},
],
},
{
text: "Deployment",
link: "/process-development/deployment",
},
],
},
{
text: "Frontend Development",
collapsed: false,
items: [
{
text: "Architecture",
link: "/frontend-development/architecture",
},
{
text: "Connecting to the Backend",
link: "/frontend-development/connecting-to-backend",
},
{
text: "Building the Frontend",
link: "/frontend-development/building",
},
{
text: "Permaweb Deployment",
link: "/frontend-development/permaweb-deployment",
},
],
},
],
topNav: [
{ text: "Documentation", link: "/introduction" },
{
text: `v${version}`,
items: [
{
text: "Changelog",
link: `${REPO_URL}/blob/main/create-ao-dapp/CHANGELOG.md`,
},
{
text: "Contributing",
link: `${REPO_URL}/blob/main/.github/CONTRIBUTING.md`,
},
],
},
{ text: "Examples", link: `${REPO_URL}/tree/main/examples/` },
{ text: "GitHub", link: REPO_URL },
],
});