File tree Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -23,15 +23,23 @@ export default defineConfig({
23
23
label : "Guides" ,
24
24
autogenerate : { directory : "guides" } ,
25
25
} ,
26
- {
27
- label : "Troubleshooting" ,
28
- link : "/troubleshooting" ,
29
- } ,
30
26
{
31
27
label : "Command Reference" ,
32
28
collapsed : true ,
33
29
autogenerate : { directory : "reference" } ,
34
30
} ,
31
+ {
32
+ label : "Source Code" ,
33
+ link : "https://github.com/algorandfoundation/nodekit/" ,
34
+ } ,
35
+ {
36
+ label : "Issue Tracker" ,
37
+ link : "https://github.com/algorandfoundation/nodekit/issues" ,
38
+ } ,
39
+ {
40
+ label : "Report an issue" ,
41
+ link : "https://github.com/algorandfoundation/nodekit/issues/new/choose" ,
42
+ }
35
43
] ,
36
44
components : {
37
45
ThemeProvider : "./src/components/CustomThemeProvider.astro" ,
Original file line number Diff line number Diff line change @@ -109,14 +109,14 @@ export const lang = "en";
109
109
<Code
110
110
lang =" shell"
111
111
code ={ ` wget -qO- https://nodekit.run/install.sh | bash ` }
112
- class =" max-w-full z-10"
112
+ class =" max-w-[95vw] z-10"
113
113
/>
114
114
</TabItem >
115
115
<TabItem label =" macOS" icon =" apple" >
116
116
<Code
117
117
lang =" shell"
118
118
code ={ ` curl -fsSL https://nodekit.run/install.sh | bash ` }
119
- class =" max-w-full z-10"
119
+ class =" max-w-[95vw] z-10"
120
120
/>
121
121
</TabItem >
122
122
</Tabs >
You can’t perform that action at this time.
0 commit comments