-
Notifications
You must be signed in to change notification settings - Fork 592
Expand file tree
/
Copy pathsidebars-developer.js
More file actions
46 lines (44 loc) · 973 Bytes
/
sidebars-developer.js
File metadata and controls
46 lines (44 loc) · 973 Bytes
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
// @ts-check
// Sidebar configuration for Build (developers) documentation
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
sidebar: [
{
type: "html",
value: '<span class="sidebar-title">Overview</span>',
className: "sidebar-title",
},
{
type: "doc",
id: "overview",
},
{
type: "doc",
id: "getting_started_on_local_network",
},
{
type: "doc",
id: "ai_tooling",
},
{
type: "link",
label: "Aztec Starter Repository",
href: "https://github.com/AztecProtocol/aztec-starter",
},
{
type: "html",
value: '<span class="sidebar-title">Docs</span>',
className: "sidebar-title",
},
{
type: "autogenerated",
dirName: "docs",
},
{
type: "link",
label: "Get Inspired",
href: "https://github.com/AztecProtocol/horizon",
},
],
};
module.exports = sidebars;