Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const config = {
navbar: {
logo: {
alt: 'StackQL',
href: '/home',
href: '/providers',
src: 'img/logo-original.svg',
srcDark: 'img/logo-white.svg',
},
Expand All @@ -121,12 +121,12 @@ const config = {
position: 'left',
},
{
to: '/downloads',
label: 'Downloads',
to: '/install',
label: 'Install',
position: 'left',
},
{
to: '/',
to: '/providers',
label: 'Providers',
position: 'left',
},
Expand All @@ -150,9 +150,9 @@ const config = {
activeBasePath: 'blog',
},
{
to: '/cookbooks',
label: 'Cookbooks',
activeBasePath: 'cookbooks',
to: '/tutorials',
label: 'Tutorials',
activeBasePath: 'tutorials',
},
],
},
Expand All @@ -173,7 +173,7 @@ const config = {
style: 'dark',
logo: {
alt: 'StackQL',
href: 'https://stackql.io/',
href: '/providers',
src: 'img/logo-original.svg',
srcDark: 'img/logo-white.svg',
},
Expand All @@ -185,10 +185,10 @@ const config = {
label: 'Home',
to: '/home',
},
{
label: 'Features',
to: '/features',
},
// {
// label: 'Features',
// to: '/features',
// },
{
label: 'Downloads',
to: '/downloads',
Expand All @@ -208,7 +208,7 @@ const config = {
},
{
label: 'Providers',
to: '/',
to: '/providers',
},
{
label: 'Blog',
Expand Down
10 changes: 10 additions & 0 deletions src/pages/install.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react';
import Head from '@docusaurus/Head';

export default function Install() {
return (
<Head>
<meta http-equiv="refresh" content="0;URL='https://stackql.io/install'" />
</Head>
);
};
10 changes: 10 additions & 0 deletions src/pages/providers.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react';
import Head from '@docusaurus/Head';

export default function Providers() {
return (
<Head>
<meta http-equiv="refresh" content="0;URL='https://stackql.io/docs/providers'" />
</Head>
);
};
2 changes: 1 addition & 1 deletion src/pages/stackql-deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Head from '@docusaurus/Head';
export default function StackQLDeploy() {
return (
<Head>
<meta http-equiv="refresh" content="0;URL='https://stackql-deploy.io/docs'" />
<meta http-equiv="refresh" content="0;URL='https://stackql-deploy.io/'" />
</Head>
);
};
10 changes: 10 additions & 0 deletions src/pages/tutorials.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react';
import Head from '@docusaurus/Head';

export default function Tutorials() {
return (
<Head>
<meta http-equiv="refresh" content="0;URL='https://stackql.io/docs/tutorials'" />
</Head>
);
};