diff --git a/apps/www/.vitepress/theme/components/MobileNav.vue b/apps/www/.vitepress/theme/components/MobileNav.vue index 1d1c1819..73a7dcae 100644 --- a/apps/www/.vitepress/theme/components/MobileNav.vue +++ b/apps/www/.vitepress/theme/components/MobileNav.vue @@ -68,9 +68,9 @@ const open = ref(false)

{{ items.title }}

- + {{ items.label }} - + {{ item.title }} - + {{ item.label }} - + diff --git a/apps/www/.vitepress/theme/config/docs.ts b/apps/www/.vitepress/theme/config/docs.ts index 1f211383..e58047e9 100644 --- a/apps/www/.vitepress/theme/config/docs.ts +++ b/apps/www/.vitepress/theme/config/docs.ts @@ -128,11 +128,12 @@ export const docsConfig: DocsConfig = { title: 'Auto Form', href: '/docs/components/auto-form', items: [], + label: 'New', }, { title: 'Charts', href: '/docs/charts', - label: 'Alpha', + label: 'New Alpha', items: [], }, ], @@ -280,7 +281,6 @@ export const docsConfig: DocsConfig = { title: 'Range Calendar', href: '/docs/components/range-calendar', items: [], - label: 'New', }, { title: 'Resizable', diff --git a/apps/www/.vitepress/theme/config/site.ts b/apps/www/.vitepress/theme/config/site.ts index 92a6729e..d5af14e3 100644 --- a/apps/www/.vitepress/theme/config/site.ts +++ b/apps/www/.vitepress/theme/config/site.ts @@ -15,6 +15,6 @@ export const siteConfig = { export const announcementConfig = { icon: '✨', - title: 'Introducing Blocks!', - link: '/blocks', + title: 'Extended: Auto Form, Charts', + link: '/docs/components/auto-form.html', }