docs: change the hub slug into /docs and the latests /docs into /framework
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
title: Overview
|
title: Overview
|
||||||
slug: /docs
|
slug: /framework
|
||||||
---
|
---
|
||||||
|
|
||||||
The following low-level docs are aimed at core contributors.
|
The following low-level docs are aimed at core contributors.
|
||||||
|
Before Width: | Height: | Size: 105 KiB After Width: | Height: | Size: 105 KiB |
|
Before Width: | Height: | Size: 402 KiB After Width: | Height: | Size: 402 KiB |
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 172 KiB After Width: | Height: | Size: 172 KiB |
|
Before Width: | Height: | Size: 629 KiB After Width: | Height: | Size: 629 KiB |
|
Before Width: | Height: | Size: 105 KiB After Width: | Height: | Size: 105 KiB |
|
Before Width: | Height: | Size: 96 KiB After Width: | Height: | Size: 96 KiB |
@ -293,13 +293,9 @@ const config = {
|
|||||||
{
|
{
|
||||||
type: "dropdown",
|
type: "dropdown",
|
||||||
label: "Docs",
|
label: "Docs",
|
||||||
|
to: "docs",
|
||||||
position: "right",
|
position: "right",
|
||||||
items: [
|
items: [
|
||||||
{
|
|
||||||
type: "docSidebar",
|
|
||||||
sidebarId: "quickstartSidebar",
|
|
||||||
label: "Quickstart",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "docSidebar",
|
type: "docSidebar",
|
||||||
sidebarId: "guidesSidebar",
|
sidebarId: "guidesSidebar",
|
||||||
@ -314,18 +310,13 @@ const config = {
|
|||||||
to: "/api-reference",
|
to: "/api-reference",
|
||||||
label: "API Reference",
|
label: "API Reference",
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
type: "docSidebar",
|
// type: "docSidebar",
|
||||||
sidebarId: "docsSidebar",
|
// sidebarId: "docsSidebar",
|
||||||
label: "Framework",
|
// label: "Framework",
|
||||||
},
|
// },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
|
||||||
to: "trial",
|
|
||||||
label: "Trial",
|
|
||||||
position: "right",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
to: "blog",
|
to: "blog",
|
||||||
label: "Blog",
|
label: "Blog",
|
||||||
|
|||||||
@ -162,18 +162,6 @@ const sidebars = {
|
|||||||
dirName: "developer",
|
dirName: "developer",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
docsSidebar: [
|
|
||||||
{
|
|
||||||
type: "autogenerated",
|
|
||||||
dirName: "docs",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
quickstartSidebar: [
|
|
||||||
{
|
|
||||||
type: "autogenerated",
|
|
||||||
dirName: "quickstart",
|
|
||||||
},
|
|
||||||
]
|
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = sidebars;
|
module.exports = sidebars;
|
||||||
|
|||||||
@ -2,7 +2,7 @@ import clsx from 'clsx'
|
|||||||
import useDocusaurusContext from '@docusaurus/useDocusaurusContext'
|
import useDocusaurusContext from '@docusaurus/useDocusaurusContext'
|
||||||
import Layout from '@theme/Layout'
|
import Layout from '@theme/Layout'
|
||||||
import Heading from '@theme/Heading'
|
import Heading from '@theme/Heading'
|
||||||
import styles from './trial.module.css'
|
import styles from './docs.module.css'
|
||||||
import HomepagePrimaryFeatures from '../components/HomepagePrimaryFeatures'
|
import HomepagePrimaryFeatures from '../components/HomepagePrimaryFeatures'
|
||||||
import HomepageSecondaryFeatures from '../components/HomepageSecondaryFeatures'
|
import HomepageSecondaryFeatures from '../components/HomepageSecondaryFeatures'
|
||||||
import HomepageTerinaryFeatures from '../components/HomepageTerinaryFeatures'
|
import HomepageTerinaryFeatures from '../components/HomepageTerinaryFeatures'
|
||||||