-
Notifications
You must be signed in to change notification settings - Fork 3
/
sidebars.js
77 lines (72 loc) · 2.1 KB
/
sidebars.js
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
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docSidebar: [
{ type: "autogenerated", dirName: "." },
{
Resources: [
{
"DAP Client Libraries": [
{
type: "link",
label: "divviup-android (Java/Android)",
href: "https://github.com/divviup/divviup-android",
},
{
type: "link",
label: "divviup-ts (TypeScript)",
href: "https://divviup.github.io/divviup-ts",
},
{
type: "link",
label: "janus_client (Rust)",
href: "https://docs.rs/janus_client/latest/janus_client/",
},
],
},
{
"Divvi Up API": [
{
type: "link",
label: "API Reference",
href: "https://app.divviup.org/swagger-ui",
},
{
type: "link",
label: "CLI",
href: "https://github.com/divviup/divviup-api/tree/main/cli",
},
{
type: "link",
label: "Client Library (Rust)",
href: "https://github.com/divviup/divviup-api/tree/main/client",
},
],
},
{
"IETF Specifications": [
{
type: "link",
label: "Distributed Aggregation Protocol (DAP)",
href: "https://datatracker.ietf.org/doc/draft-ietf-ppm-dap/",
},
{
type: "link",
label: "Verifiable Distributed Aggregation Functions (VDAF)",
href: "https://datatracker.ietf.org/doc/draft-irtf-cfrg-vdaf/",
},
],
},
],
},
],
};
module.exports = sidebars;