File tree Expand file tree Collapse file tree 5 files changed +44
-14
lines changed Expand file tree Collapse file tree 5 files changed +44
-14
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ const config = {
105
105
navbar : {
106
106
logo : {
107
107
alt : 'StackQL' ,
108
- href : '/home ' ,
108
+ href : '/providers ' ,
109
109
src : 'img/logo-original.svg' ,
110
110
srcDark : 'img/logo-white.svg' ,
111
111
} ,
@@ -121,12 +121,12 @@ const config = {
121
121
position : 'left' ,
122
122
} ,
123
123
{
124
- to : '/downloads ' ,
125
- label : 'Downloads ' ,
124
+ to : '/install ' ,
125
+ label : 'Install ' ,
126
126
position : 'left' ,
127
127
} ,
128
128
{
129
- to : '/' ,
129
+ to : '/providers ' ,
130
130
label : 'Providers' ,
131
131
position : 'left' ,
132
132
} ,
@@ -150,9 +150,9 @@ const config = {
150
150
activeBasePath : 'blog' ,
151
151
} ,
152
152
{
153
- to : '/cookbooks ' ,
154
- label : 'Cookbooks ' ,
155
- activeBasePath : 'cookbooks ' ,
153
+ to : '/tutorials ' ,
154
+ label : 'Tutorials ' ,
155
+ activeBasePath : 'tutorials ' ,
156
156
} ,
157
157
] ,
158
158
} ,
@@ -173,7 +173,7 @@ const config = {
173
173
style : 'dark' ,
174
174
logo : {
175
175
alt : 'StackQL' ,
176
- href : 'https://stackql.io/ ' ,
176
+ href : '/providers ' ,
177
177
src : 'img/logo-original.svg' ,
178
178
srcDark : 'img/logo-white.svg' ,
179
179
} ,
@@ -185,10 +185,10 @@ const config = {
185
185
label : 'Home' ,
186
186
to : '/home' ,
187
187
} ,
188
- {
189
- label : 'Features' ,
190
- to : '/features' ,
191
- } ,
188
+ // {
189
+ // label: 'Features',
190
+ // to: '/features',
191
+ // },
192
192
{
193
193
label : 'Downloads' ,
194
194
to : '/downloads' ,
@@ -208,7 +208,7 @@ const config = {
208
208
} ,
209
209
{
210
210
label : 'Providers' ,
211
- to : '/' ,
211
+ to : '/providers ' ,
212
212
} ,
213
213
{
214
214
label : 'Blog' ,
Original file line number Diff line number Diff line change
1
+ import React from 'react' ;
2
+ import Head from '@docusaurus/Head' ;
3
+
4
+ export default function Install ( ) {
5
+ return (
6
+ < Head >
7
+ < meta http-equiv = "refresh" content = "0;URL='https://stackql.io/install'" />
8
+ </ Head >
9
+ ) ;
10
+ } ;
Original file line number Diff line number Diff line change
1
+ import React from 'react' ;
2
+ import Head from '@docusaurus/Head' ;
3
+
4
+ export default function Providers ( ) {
5
+ return (
6
+ < Head >
7
+ < meta http-equiv = "refresh" content = "0;URL='https://stackql.io/docs/providers'" />
8
+ </ Head >
9
+ ) ;
10
+ } ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import Head from '@docusaurus/Head';
4
4
export default function StackQLDeploy ( ) {
5
5
return (
6
6
< Head >
7
- < meta http-equiv = "refresh" content = "0;URL='https://stackql-deploy.io/docs '" />
7
+ < meta http-equiv = "refresh" content = "0;URL='https://stackql-deploy.io/'" />
8
8
</ Head >
9
9
) ;
10
10
} ;
Original file line number Diff line number Diff line change
1
+ import React from 'react' ;
2
+ import Head from '@docusaurus/Head' ;
3
+
4
+ export default function Tutorials ( ) {
5
+ return (
6
+ < Head >
7
+ < meta http-equiv = "refresh" content = "0;URL='https://stackql.io/docs/tutorials'" />
8
+ </ Head >
9
+ ) ;
10
+ } ;
You can’t perform that action at this time.
0 commit comments