Change navbar icons

This commit is contained in:
2024-06-21 11:54:35 +02:00
parent 8dc0a0fbd3
commit 6599b5d87f

View File

@@ -9,23 +9,23 @@ const navs = [
{ {
label: 'home', label: 'home',
to: '/', to: '/',
icon: 'i-ph-house-bold' icon: 'i-ph-house-line-duotone'
}, },
{ {
label: 'uses', label: 'uses',
to: '/uses', to: '/uses',
icon: 'i-ph-briefcase-bold' icon: 'i-ph-briefcase-duotone'
}, },
{ {
label: 'writings', label: 'writings',
to: '/writings', to: '/writings',
icon: 'i-ph-newspaper-bold' icon: 'i-ph-newspaper-duotone'
}, },
{ {
label: 'resume', label: 'resume',
to: '/resume.pdf', to: '/resume.pdf',
target: '_blank', target: '_blank',
icon: 'i-ph-person-arms-spread-bold' icon: 'i-ph-address-book-duotone'
} }
] ]
</script> </script>
@@ -55,7 +55,7 @@ const navs = [
<ClientOnly> <ClientOnly>
<UTooltip text="switch theme"> <UTooltip text="switch theme">
<UButton <UButton
:icon="isDark ? 'i-lucide:moon' : 'i-lucide:sun'" :icon="isDark ? 'i-ph-moon-duotone' : 'i-ph-sun-duotone'"
variant="link" variant="link"
color="gray" color="gray"
size="sm" size="sm"