Fix bugs and typo

This commit is contained in:
2024-11-26 12:27:02 +01:00
parent f6d64d1519
commit 3143fa973f
4 changed files with 5 additions and 5 deletions

View File

@@ -36,7 +36,7 @@ const navs = [
en: 'resume',
fr: 'cv',
},
to: config.public.cloud.resume,
to: '/Resume2024.pdf',
target: '_blank',
icon: 'address-book-duotone',
},
@@ -54,7 +54,7 @@ async function toggleTheme() {
}
const { locale, setLocale, locales, t } = useI18n()
const currentLocale = computed(() => locales.value.filter(l => l.code === locale.value)[0])
const currentLocale = computed(() => locales.filter(l => l.code === locale.value)[0])
async function changeLocale() {
document.body.style.animation = 'switch-on .2s'