Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 20 additions & 6 deletions doc/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default defineConfig({
nav: [
{ text: "Setup", link: "/setup/" },
{ text: "Concepts", link: "/concept/" },
{ text: "Apps", link: "/bin/" },
{ text: "Applications", link: "/bin/" },
{
text: "Libraries",
link: "/lib/",
Expand All @@ -56,6 +56,7 @@ export default defineConfig({
{ text: "Go", link: "/lib/go/" },
],
},
{ text: "Demos", link: "/demo/" },
],

sidebar: {
Expand All @@ -71,7 +72,7 @@ export default defineConfig({
],
},
{
text: "Demos",
text: "Demo Setup",
items: [
{ text: "Web", link: "/setup/demo/web" },
{ text: "MoQ Boy", link: "/setup/demo/boy" },
Expand All @@ -88,9 +89,9 @@ export default defineConfig({
text: "Layers",
link: "/concept/layer/",
items: [
{ text: "quic", link: "/concept/layer/quic" },
{ text: "web-transport", link: "/concept/layer/web-transport" },
{ text: "web-socket", link: "/concept/layer/web-socket" },
{ text: "QUIC", link: "/concept/layer/quic" },
{ text: "WebTransport", link: "/concept/layer/web-transport" },
{ text: "WebSocket", link: "/concept/layer/web-socket" },
{ text: "moq-lite", link: "/concept/layer/moq-lite" },
{ text: "hang", link: "/concept/layer/hang" },
],
Expand All @@ -102,6 +103,7 @@ export default defineConfig({
{ text: "MoqTransport", link: "/concept/standard/moq-transport" },
{ text: "MSF", link: "/concept/standard/msf" },
{ text: "LOC", link: "/concept/standard/loc" },
{ text: "CMAF", link: "/concept/standard/cmaf" },
{ text: "Interop", link: "/concept/standard/interop" },
],
},
Expand Down Expand Up @@ -171,7 +173,9 @@ export default defineConfig({
{ text: "moq-native", link: "/lib/rs/crate/moq-native" },
{ text: "moq-token", link: "/lib/rs/crate/moq-token" },
{ text: "hang", link: "/lib/rs/crate/hang" },
{ text: "moq-mux", link: "/lib/rs/crate/moq-mux" },
{ text: "web-transport", link: "/lib/rs/crate/web-transport" },
{ text: "moq-boy", link: "/lib/rs/crate/moq-boy" },
{ text: "libmoq", link: "/lib/rs/crate/libmoq" },
],
},
Expand Down Expand Up @@ -199,14 +203,16 @@ export default defineConfig({
{ text: "@moq/publish", link: "/lib/js/@moq/publish" },
{ text: "@moq/token", link: "/lib/js/@moq/token" },
{ text: "@moq/signals", link: "/lib/js/@moq/signals" },
{ text: "@moq/demo", link: "/lib/js/@moq/demo" },
{ text: "@moq/boy", link: "/lib/js/@moq/boy" },
],
},
],
},
{
text: "C",
link: "/lib/c/",
items: [{ text: "libmoq", link: "/lib/rs/crate/libmoq" }],
items: [{ text: "libmoq", link: "/lib/c/#libmoq" }],
},
{
text: "Python",
Expand All @@ -231,6 +237,14 @@ export default defineConfig({
],
},
],

"/demo/": [
{
text: "Demos",
link: "/demo/",
items: [{ text: "MoQ Boy", link: "/demo/moq-boy" }],
},
],
},

socialLinks: [
Expand Down
6 changes: 3 additions & 3 deletions doc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ hero:
text: Concepts
link: /concept/
- theme: alt
text: Apps
text: Applications
link: /bin/
- theme: alt
text: Libraries
link: /lib/
- theme: alt
text: Demo
link: https://moq.dev/
text: Demos
link: /demo/

features:
- icon:
Expand Down
Loading