Skip to content

Commit 5cc3078

Browse files
committed
chore: update dependencies and add documentation for web apps
1 parent cb88d12 commit 5cc3078

File tree

7 files changed

+1077
-843
lines changed

7 files changed

+1077
-843
lines changed

astro.config.mjs

Lines changed: 28 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// @ts-check
22
import { defineConfig } from "astro/config";
3+
34
import starlight from "@astrojs/starlight";
45
import tailwind from "@astrojs/tailwind";
56

@@ -25,8 +26,10 @@ export default defineConfig({
2526
label: "The Vision",
2627
items: [
2728
{ label: "Introduction", slug: "index" },
28-
{ label: "v1 Concepts and Terminology", slug: "concepts/terminology" },
29-
29+
{
30+
label: "v1 Concepts and Terminology",
31+
slug: "concepts/terminology",
32+
},
3033
],
3134
},
3235
{
@@ -52,7 +55,10 @@ export default defineConfig({
5255
label: "Agents & Modules",
5356
items: [
5457
{ label: "Concepts", slug: "agents/what-is-a-agent" },
55-
{ label: "Register to the Network", slug: "agents/register-a-agent" },
58+
{
59+
label: "Register to the Network",
60+
slug: "agents/register-a-agent",
61+
},
5662
{
5763
label: "Connect to a Module",
5864
slug: "agents/connect-to-a-agent",
@@ -80,12 +86,26 @@ export default defineConfig({
8086
],
8187
},
8288
{
83-
label: "Allocator",
89+
label: "Web apps",
8490
items: [
85-
{label: "Querying allocated stake", slug: "allocator/querying-stake-weight"},
86-
]
87-
}
88-
91+
{
92+
label: "Introduction",
93+
slug: "web-apps/intro",
94+
},
95+
{
96+
label: "Installation",
97+
slug: "web-apps/installation",
98+
},
99+
{
100+
label: "Develop",
101+
slug: "web-apps/develop",
102+
},
103+
{
104+
label: "Querying allocated stake",
105+
slug: "web-apps/querying-stake-weight",
106+
},
107+
],
108+
},
89109
],
90110
editLink: {
91111
baseUrl: "https://github.com/renlabs-dev/torus-docs/edit/main/docs/",

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
},
1212
"dependencies": {
1313
"@astrojs/check": "^0.9.4",
14-
"@astrojs/starlight": "^0.29.2",
15-
"@astrojs/starlight-tailwind": "^2.0.3",
16-
"@astrojs/tailwind": "^5.1.0",
17-
"astro": "^4.16.10",
14+
"@astrojs/starlight": "^0.31.1",
15+
"@astrojs/starlight-tailwind": "^3.0.0",
16+
"@astrojs/tailwind": "^6.0.0",
17+
"astro": "^5.3.0",
1818
"tailwindcss": "^3.4.4",
1919
"typescript": "^5.7.2"
2020
},

0 commit comments

Comments
 (0)