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 = {
105105 navbar : {
106106 logo : {
107107 alt : 'StackQL' ,
108- href : '/home ' ,
108+ href : '/providers ' ,
109109 src : 'img/logo-original.svg' ,
110110 srcDark : 'img/logo-white.svg' ,
111111 } ,
@@ -121,12 +121,12 @@ const config = {
121121 position : 'left' ,
122122 } ,
123123 {
124- to : '/downloads ' ,
125- label : 'Downloads ' ,
124+ to : '/install ' ,
125+ label : 'Install ' ,
126126 position : 'left' ,
127127 } ,
128128 {
129- to : '/' ,
129+ to : '/providers ' ,
130130 label : 'Providers' ,
131131 position : 'left' ,
132132 } ,
@@ -150,9 +150,9 @@ const config = {
150150 activeBasePath : 'blog' ,
151151 } ,
152152 {
153- to : '/cookbooks ' ,
154- label : 'Cookbooks ' ,
155- activeBasePath : 'cookbooks ' ,
153+ to : '/tutorials ' ,
154+ label : 'Tutorials ' ,
155+ activeBasePath : 'tutorials ' ,
156156 } ,
157157 ] ,
158158 } ,
@@ -173,7 +173,7 @@ const config = {
173173 style : 'dark' ,
174174 logo : {
175175 alt : 'StackQL' ,
176- href : 'https://stackql.io/ ' ,
176+ href : '/providers ' ,
177177 src : 'img/logo-original.svg' ,
178178 srcDark : 'img/logo-white.svg' ,
179179 } ,
@@ -185,10 +185,10 @@ const config = {
185185 label : 'Home' ,
186186 to : '/home' ,
187187 } ,
188- {
189- label : 'Features' ,
190- to : '/features' ,
191- } ,
188+ // {
189+ // label: 'Features',
190+ // to: '/features',
191+ // },
192192 {
193193 label : 'Downloads' ,
194194 to : '/downloads' ,
@@ -208,7 +208,7 @@ const config = {
208208 } ,
209209 {
210210 label : 'Providers' ,
211- to : '/' ,
211+ to : '/providers ' ,
212212 } ,
213213 {
214214 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';
44export default function StackQLDeploy ( ) {
55 return (
66 < 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/'" />
88 </ Head >
99 ) ;
1010} ;
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