diff --git a/docs/.vitepress/config.js b/docs/.vitepress/config.js index 075acf2e..a7845f19 100644 --- a/docs/.vitepress/config.js +++ b/docs/.vitepress/config.js @@ -37,10 +37,15 @@ function getGuideSidebar() { { text: 'Getting Started', link: '/guide/getting-started' }, { text: 'Configuration', link: '/guide/configuration' }, { text: 'Markdown Extensions', link: '/guide/markdown' }, + { text: 'Deploying', link: '/guide/deploy' } + ] + }, + { + text: 'Advanced', + children: [ { text: 'Frontmatter', link: '/guide/frontmatter' }, - { text: 'Global Computed', link: '/guide/global-computed' }, { text: 'Customization', link: '/guide/customization' }, - { text: 'Deploying', link: '/guide/deploy' } + { text: 'Global Computed', link: '/guide/global-computed' } ] } ] diff --git a/src/client/theme-default/components/Home.vue b/src/client/theme-default/components/Home.vue index 0b79bf50..49ce8cb9 100644 --- a/src/client/theme-default/components/Home.vue +++ b/src/client/theme-default/components/Home.vue @@ -24,7 +24,9 @@ v-if="data.actionText && data.actionLink" class="action" > - + + {{ actionLink.text }} +

@@ -55,15 +57,10 @@