diff --git a/app/components/AppHeader.vue b/app/components/AppHeader.vue index 17112d530..0b56dcec2 100644 --- a/app/components/AppHeader.vue +++ b/app/components/AppHeader.vue @@ -22,7 +22,7 @@ const desktopLinks = computed(() => [ keyshortcut: 'c', type: 'link', external: false, - iconClass: 'i-carbon:compare', + iconClass: 'i-lucide:git-compare', }, { name: 'Settings', @@ -31,7 +31,7 @@ const desktopLinks = computed(() => [ keyshortcut: ',', type: 'link', external: false, - iconClass: 'i-carbon:settings', + iconClass: 'i-lucide:settings', }, ]) @@ -54,7 +54,7 @@ const mobileLinks = computed(() => [ to: { name: 'about' }, type: 'link', external: false, - iconClass: 'i-carbon:information', + iconClass: 'i-lucide:info', }, { name: 'Privacy Policy', @@ -62,7 +62,7 @@ const mobileLinks = computed(() => [ to: { name: 'privacy' }, type: 'link', external: false, - iconClass: 'i-carbon:security', + iconClass: 'i-lucide:shield-check', }, { name: 'Accessibility', @@ -70,7 +70,7 @@ const mobileLinks = computed(() => [ to: { name: 'accessibility' }, type: 'link', external: false, - iconClass: 'i-carbon:accessibility-alt', + iconClass: 'i-custom:a11y', }, ], }, @@ -89,7 +89,7 @@ const mobileLinks = computed(() => [ target: '_blank', type: 'link', external: true, - iconClass: 'i-carbon:document', + iconClass: 'i-lucide:file-text', }, { name: 'Source', @@ -98,7 +98,7 @@ const mobileLinks = computed(() => [ target: '_blank', type: 'link', external: true, - iconClass: 'i-carbon:logo-github', + iconClass: 'i-simple-icons:github', }, { name: 'Social', @@ -107,7 +107,7 @@ const mobileLinks = computed(() => [ target: '_blank', type: 'link', external: true, - iconClass: 'i-carbon:logo-bluesky', + iconClass: 'i-simple-icons:bluesky', }, { name: 'Chat', @@ -116,14 +116,14 @@ const mobileLinks = computed(() => [ target: '_blank', type: 'link', external: true, - iconClass: 'i-carbon:chat', + iconClass: 'i-lucide:message-circle', }, ], }, ]) const showFullSearch = shallowRef(false) -const showMobileMenu = shallowRef(false) +const showMobileMenu = shallowRef(true) const { env } = useAppConfig().buildInfo // On mobile, clicking logo+search button expands search @@ -287,7 +287,7 @@ onKeyStroke( :aria-expanded="showMobileMenu" @click="expandMobileSearch" v-if="!isSearchExpanded && !isOnHomePage" - classicon="i-carbon:search" + classicon="i-lucide:search" /> @@ -297,7 +297,7 @@ onKeyStroke( :aria-label="$t('nav.open_menu')" :aria-expanded="showMobileMenu" @click="showMobileMenu = !showMobileMenu" - classicon="i-carbon:menu" + classicon="i-lucide:menu" /> diff --git a/app/components/BlueskyPostEmbed.client.vue b/app/components/BlueskyPostEmbed.client.vue index 32e3b982a..ed253b8cf 100644 --- a/app/components/BlueskyPostEmbed.client.vue +++ b/app/components/BlueskyPostEmbed.client.vue @@ -83,7 +83,7 @@ const { data: post, status } = useAsyncData(
@{{ post.author.handle }}