arkanum/docs/.vitepress/sidebar.mjs

26 lines
660 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-02-16 13:05:13 +01:00
],
},
]
2024-02-08 07:27:02 +01:00
}