Skip to content

Commit 81976de

Browse files
authored
Merge pull request #292 from stackql/feature/provider-docs
nav updates
2 parents 31b272e + 0f8371a commit 81976de

File tree

5 files changed

+44
-14
lines changed

5 files changed

+44
-14
lines changed

docusaurus.config.js

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff 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',

src/pages/install.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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+
};

src/pages/providers.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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+
};

src/pages/stackql-deploy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Head from '@docusaurus/Head';
44
export 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
};

src/pages/tutorials.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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+
};

0 commit comments

Comments
 (0)