File tree Expand file tree Collapse file tree 1 file changed +14
-10
lines changed Expand file tree Collapse file tree 1 file changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -82,11 +82,13 @@ function Toolbox({ Component, pageProps }: AppProps) {
82
82
if ( Array . isArray ( Tools [ key ] ) ) {
83
83
( Tools [ key ] as ToolboxTool [ ] ) . forEach ( ( tool ) => {
84
84
children . push (
85
- < p
86
- css = { tw `px-3 mx-1 pt-3 ml-1 pb-1 hover:cursor-default` }
87
- >
88
- { tool . short }
89
- </ p >
85
+ < Link href = { tool . link } >
86
+ < p
87
+ css = { tw `px-3 mx-1 pt-3 ml-1 pb-1 hover:cursor-default` }
88
+ >
89
+ { tool . short }
90
+ </ p >
91
+ </ Link >
90
92
) ;
91
93
} ) ;
92
94
} else {
@@ -97,11 +99,13 @@ function Toolbox({ Component, pageProps }: AppProps) {
97
99
key1
98
100
] . forEach ( ( tool ) => {
99
101
children . push (
100
- < p
101
- css = { tw `px-3 mx-1 pt-3 ml-2 pb-1 hover:cursor-default` }
102
- >
103
- { tool . short }
104
- </ p >
102
+ < Link href = { tool . link } >
103
+ < p
104
+ css = { tw `px-3 mx-1 pt-3 ml-2 pb-1 hover:cursor-default` }
105
+ >
106
+ { tool . short }
107
+ </ p >
108
+ </ Link >
105
109
) ;
106
110
} ) ;
107
111
return (
You can’t perform that action at this time.
0 commit comments