mirror of
https://github.com/Ukendio/jecs.git
synced 2025-04-25 09:30:03 +00:00
Separate pages
This commit is contained in:
parent
bbb4338925
commit
ca3d947416
13 changed files with 203 additions and 193 deletions
|
@ -2,56 +2,66 @@ import { defineConfig } from 'vitepress'
|
|||
|
||||
// https://vitepress.dev/reference/site-config
|
||||
export default defineConfig({
|
||||
title: "Jecs",
|
||||
base: "/jecs/",
|
||||
description: "A VitePress Site",
|
||||
themeConfig: {
|
||||
// https://vitepress.dev/reference/default-theme-config
|
||||
nav: [
|
||||
{ text: 'Home', link: '/' },
|
||||
{ text: 'Examples', link: '/markdown-examples' }
|
||||
],
|
||||
title: "Jecs",
|
||||
base: "/jecs/",
|
||||
description: "A VitePress Site",
|
||||
themeConfig: {
|
||||
// https://vitepress.dev/reference/default-theme-config
|
||||
nav: [
|
||||
{ text: 'Home', link: '/' },
|
||||
{ text: 'Examples', link: '/markdown-examples' },
|
||||
{ text: 'API', link: '/api/jecs.md' }
|
||||
],
|
||||
|
||||
sidebar: [
|
||||
{
|
||||
text: 'Overview',
|
||||
items: [
|
||||
{ text: 'Getting Started', link: '/overview/get-started' },
|
||||
{ text: 'First Jecs Project', link: '/overview/first-jecs-project' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: 'Concepts',
|
||||
items: [
|
||||
{ text: 'Entities', link: '/concepts/entities' },
|
||||
{ text: 'Static Components', link: '/concepts/static-components' },
|
||||
{ text: 'Queries', link: '/concepts/queries' },
|
||||
]
|
||||
},
|
||||
{
|
||||
text: 'References',
|
||||
items: [
|
||||
{ text: 'API Reference', link: '/api' },
|
||||
]
|
||||
},
|
||||
{
|
||||
text: "FAQ",
|
||||
items: [
|
||||
{ text: 'How can I contribute?', link: '/faq/contributing' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: 'Contributing',
|
||||
items: [
|
||||
{ text: 'Contribution Guidelines', link: '/contributing/guidelines'},
|
||||
{ text: 'Submitting Issues', link: '/contributing/issues'},
|
||||
{ text: 'Submitting Pull Requests', link: '/contributing/pull-requests'},
|
||||
]
|
||||
}
|
||||
],
|
||||
sidebar: {
|
||||
"/api/": [
|
||||
{
|
||||
text: "API reference",
|
||||
items: [
|
||||
{ text: "jecs", link: "/api/jecs" },
|
||||
{ text: "World", link: "/api/world" },
|
||||
{ text: "Query", link: "/api/query" }
|
||||
]
|
||||
}
|
||||
],
|
||||
"/learn/": [
|
||||
{
|
||||
text: "Introduction",
|
||||
items: [
|
||||
{ text: 'Getting Started', link: '/overview/get-started' },
|
||||
{ text: 'First Jecs Project', link: '/overview/first-jecs-project' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: 'Concepts',
|
||||
items: [
|
||||
{ text: 'Entities', link: '/concepts/entities' },
|
||||
{ text: 'Static Components', link: '/concepts/static-components' },
|
||||
{ text: 'Queries', link: '/concepts/queries' },
|
||||
]
|
||||
},
|
||||
{
|
||||
text: "FAQ",
|
||||
items: [
|
||||
{ text: 'How can I contribute?', link: '/faq/contributing' }
|
||||
]
|
||||
},
|
||||
|
||||
socialLinks: [
|
||||
{ icon: 'github', link: 'https://github.com/vuejs/vitepress' }
|
||||
]
|
||||
}
|
||||
],
|
||||
"/contributing/": [
|
||||
{
|
||||
text: 'Contributing',
|
||||
items: [
|
||||
{ text: 'Contribution Guidelines', link: '/contributing/guidelines' },
|
||||
{ text: 'Submitting Issues', link: '/contributing/issues' },
|
||||
{ text: 'Submitting Pull Requests', link: '/contributing/pull-requests' },
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
socialLinks: [
|
||||
{ icon: 'github', link: 'https://github.com/vuejs/vitepress' }
|
||||
]
|
||||
}
|
||||
})
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
## TODO
|
||||
|
||||
This is a TODO stub.
|
|
@ -1,3 +0,0 @@
|
|||
## TODO
|
||||
|
||||
This is a TODO stub.
|
|
@ -1,3 +0,0 @@
|
|||
## TODO
|
||||
|
||||
This is a TODO stub.
|
3
docs/learn/concepts/queries.md
Normal file
3
docs/learn/concepts/queries.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
## TODO
|
||||
|
||||
This is a TODO stub.
|
3
docs/learn/concepts/static-components.md
Normal file
3
docs/learn/concepts/static-components.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
## TODO
|
||||
|
||||
This is a TODO stub.
|
3
docs/learn/faq/contributing.md
Normal file
3
docs/learn/faq/contributing.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
## TODO
|
||||
|
||||
This is a TODO stub.
|
3
docs/learn/overview/first-jecs-project.md
Normal file
3
docs/learn/overview/first-jecs-project.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
## TODO
|
||||
|
||||
This is a TODO stub.
|
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.9 KiB |
|
@ -1,3 +0,0 @@
|
|||
## TODO
|
||||
|
||||
This is a TODO stub.
|
Loading…
Reference in a new issue