-
Notifications
You must be signed in to change notification settings - Fork 607
Expand file tree
/
Copy pathsidebars-developer.js
More file actions
55 lines (53 loc) · 1.1 KB
/
Copy pathsidebars-developer.js
File metadata and controls
55 lines (53 loc) · 1.1 KB
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
// @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: "getting_started_on_testnet",
},
{
type: "doc",
id: "ai_tooling",
},
{
type: "doc",
id: "support",
label: "Support",
},
{
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;