This repository was archived by the owner on Jul 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsidebarsLanding.ts
More file actions
109 lines (107 loc) · 2.21 KB
/
sidebarsLanding.ts
File metadata and controls
109 lines (107 loc) · 2.21 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
// sidebarsBlinks.ts
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
const sidebars: SidebarsConfig = {
tutorialSidebar: [
{
type: "doc",
id: "index",
label: "Welcome",
},
{
type: "html",
value: "BLINKS",
className: "sidebar-title",
},
{
type: "link",
href: "https://sbl.dial.to",
label: "🔥 Standard Blinks Library",
},
{
type: "link",
href: "/blinks/blinks-client/integrate",
label: "Integrate Blinks",
},
{
type: "link",
href: "/blinks/blinks-provider/build-your-first-blink",
label: "Build your first Blink",
},
{
type: "link",
href: "/blinks/blinks-provider/blink-registry",
label: "Register Blinks",
},
{
type: "link",
href: "/blinks/blinks-scaffolds/",
label: "Blinks Scaffolds",
},
{
type: "link",
href: "https://api.dial.to/docs",
label: "Blinks API",
},
{
type: "html",
value: "ALERTS",
className: "sidebar-title",
},
{
type: "link",
href: "/alerts/quick-start",
label: "Quick Start",
},
{
type: "link",
href: "/alerts/setup/register-app",
label: "Register your Dapp",
},
{
type: "link",
href: "/alerts/send/sdk/",
label: "Send Alerts",
},
{
type: "link",
href: "/alerts/integrate-inbox",
label: "Integrate an Inbox",
},
{
type: "link",
href: "/alerts/integrate-inbox/universal-inbox",
label: "Universal Inbox 📥",
},
{
type: "link",
href: "/alerts/mobile-alerts",
label: "Mobile Alerts Stack",
},
{
type: "link",
href: "https://alerts-api.dial.to/docs",
label: "Alerts API",
},
{
type: "html",
value: "FOLLOW US",
className: "sidebar-title",
},
{
type: "link",
href: "https://x.com/saydialect",
label: "Twitter",
},
{
type: "link",
href: "https://discord.gg/saydialect",
label: "Discord",
},
{
type: "link",
href: "https://github.com/dialectlabs",
label: "GitHub",
},
],
};
export default sidebars;