Skip to content

Commit

Permalink
Added Head
Browse files Browse the repository at this point in the history
  • Loading branch information
Type-32 committed Feb 22, 2024
1 parent 79ab886 commit 9b2639a
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,19 @@ const onBeforeEnter = async () => {
await finalizePendingLocaleChange()
}
useHead({
title: i18n.t('role.assistant'),
meta: [
{ name: 'description', content: i18n.t('role.assistant.desc') }
],
link: [
{ rel: 'icon', type: 'image/png', href: '/moodhelper.png' }
]
})
useSeoMeta({
title: "MoodHelper",
ogTitle: "MoodHelper",
title: i18n.t('role.assistant'),
ogTitle: i18n.t('role.assistant'),
description: i18n.t('role.assistant.desc'),
ogDescription: i18n.t('role.assistant.desc'),
ogImage: '/moodhelper.png',
Expand Down

0 comments on commit 9b2639a

Please sign in to comment.