diff --git a/docs/app/app.vue b/docs/app/app.vue index 108058c0..cc6aedfe 100644 --- a/docs/app/app.vue +++ b/docs/app/app.vue @@ -22,18 +22,23 @@ const searchTerm = ref('') const links = computed(() => [{ label: 'Docs', - icon: 'i-lucide-book-open', + icon: 'i-lucide-square-play', to: '/getting-started', active: route.path.startsWith('/getting-started') }, { label: 'Components', - icon: 'i-lucide-box', + icon: 'i-lucide-square-code', to: '/components', active: route.path.startsWith('/components') }, { label: 'Roadmap', icon: 'i-lucide-map', to: '/roadmap' +}, { + label: 'Figma', + icon: 'i-lucide-figma', + to: 'https://www.figma.com/community/file/1288455405058138934', + target: '_blank' }, { label: 'Releases', icon: 'i-lucide-rocket', diff --git a/docs/app/components/Header.vue b/docs/app/components/Header.vue index 49a022fd..4c607ce6 100644 --- a/docs/app/components/Header.vue +++ b/docs/app/components/Header.vue @@ -51,9 +51,9 @@ defineShortcuts({ diff --git a/docs/app/error.vue b/docs/app/error.vue index 243f5e5f..791fef1b 100644 --- a/docs/app/error.vue +++ b/docs/app/error.vue @@ -15,18 +15,23 @@ const { data: files } = await useAsyncData('files', () => queryCollectionSearchS const links = computed(() => [{ label: 'Docs', - icon: 'i-lucide-book-open', + icon: 'i-lucide-square-play', to: '/getting-started', active: route.path.startsWith('/getting-started') }, { label: 'Components', - icon: 'i-lucide-box', + icon: 'i-lucide-square-code', to: '/components', active: route.path.startsWith('/components') }, { label: 'Roadmap', icon: 'i-lucide-map', to: '/roadmap' +}, { + label: 'Figma', + icon: 'i-lucide-figma', + to: 'https://www.figma.com/community/file/1288455405058138934', + target: '_blank' }, { label: 'Releases', icon: 'i-lucide-rocket',