arkanum/docs/.vitepress/sidebar.mjs

29 lines
856 B
JavaScript
Raw Normal View History

2024-02-08 07:27:02 +01:00
export const SidebarItems = {
2024-02-16 13:05:13 +01:00
'/guide/': { base: '/guide/', items: getGuide() },
}
function getGuide() {
return [
{
text: 'Guide',
2024-03-01 12:03:30 +01:00
//collapsed: false,
2024-02-16 13:05:13 +01:00
items: [
2024-03-01 12:03:30 +01:00
{ text: 'About', link: 'about' },
{ text: 'Getting Started', link: 'getting-started' },
{
text: 'Components',
items: [
{ text: 'Base Images', link: 'components/base-images' },
{ text: 'Included Packages', link: 'components/packages' },
{ text: 'Starship Prompt', link: 'components/starship' },
{ text: 'Git', link: 'components/git' },
2024-03-01 13:12:42 +01:00
{ text: 'Arkanum CLI', link: 'components/arkanum-cli' },
{ text: 'FiraCode Font', link: 'components/firacode' },
2024-04-04 17:24:48 +02:00
{ text: 'VSCode', link: 'components/vscode' },
2024-03-01 12:03:30 +01:00
],
},
2024-02-16 13:05:13 +01:00
],
},
]
2024-02-08 07:27:02 +01:00
}