Moved guide sections into their own folders

This commit is contained in:
thepaperpilot 2022-07-17 13:59:52 -05:00
parent 32d527edeb
commit 05049fb871
18 changed files with 15 additions and 15 deletions

View file

@ -39,39 +39,39 @@ module.exports = {
collapsible: true, collapsible: true,
items: [ items: [
{ text: "Introduction", link: "/guide/" }, { text: "Introduction", link: "/guide/" },
{ text: "Setting Up", link: "/guide/setup" }, { text: "Setting Up", link: "/guide/getting-started/setup" },
{ text: "Updating Profectus", link: "/guide/updating" }, { text: "Updating Profectus", link: "/guide/getting-started/updating" },
{ text: "Example Projects", link: "/guide/examples" } { text: "Example Projects", link: "/guide/getting-started/examples" }
] ]
}, },
{ {
text: "Creating Your Project", text: "Creating Your Project",
collapsible: true, collapsible: true,
items: [ items: [
{ text: "Project Info", link: "/guide/project-info" }, { text: "Project Info", link: "/guide/creating-your-project/project-info" },
{ text: "Project Entry", link: "/guide/project-entry" }, { text: "Project Entry", link: "/guide/creating-your-project/project-entry" },
{ text: "Changelog", link: "/guide/changelog" }, { text: "Changelog", link: "/guide/creating-your-project/changelog" },
{ text: "Themes", link: "/guide/themes" }, { text: "Themes", link: "/guide/creating-your-project/themes" },
{ text: "Utilities", link: "/guide/utils" } { text: "Utilities", link: "/guide/creating-your-project/utils" }
] ]
}, },
{ {
text: "Important Concepts", text: "Important Concepts",
collapsible: true, collapsible: true,
items: [ items: [
{ text: "Layers", link: "/guide/layers" }, { text: "Layers", link: "/guide/important-concepts/layers" },
{ text: "Features", link: "/guide/features" }, { text: "Features", link: "/guide/important-concepts/features" },
{ text: "Coercable Components", link: "/guide/coercable" }, { text: "Coercable Components", link: "/guide/important-concepts/coercable" },
{ text: "Reactivity", link: "/guide/reactivity" }, { text: "Reactivity", link: "/guide/important-concepts/reactivity" },
{ text: "Persistence", link: "/guide/persistence" } { text: "Persistence", link: "/guide/important-concepts/persistence" }
] ]
}, },
{ {
text: "Advanced Concepts", text: "Advanced Concepts",
collapsible: true, collapsible: true,
items: [ items: [
{ text: "Creating Features", link: "/guide/creating-features" }, { text: "Creating Features", link: "/guide/advanced-concepts/creating-features" },
{ text: "Dynamic Layers", link: "/guide/dynamic-layers" } { text: "Dynamic Layers", link: "/guide/advanced-concepts/dynamic-layers" }
] ]
} }
], ],

View file

Before

Width:  |  Height:  |  Size: 6.9 KiB

After

Width:  |  Height:  |  Size: 6.9 KiB

View file

Before

Width:  |  Height:  |  Size: 87 KiB

After

Width:  |  Height:  |  Size: 87 KiB