feat: adiciona metadados de title e description

This commit is contained in:
2026-05-29 18:52:06 -05:00
parent f643a32a90
commit add4d4512a
14 changed files with 148 additions and 6 deletions

View File

@@ -215,6 +215,17 @@
</template>
<script setup>
useHead({
title: 'GameVerse | Sistema Distribuído Gamer',
meta: [
{
name: 'description',
content:
'Plataforma integrada para descobrir jogos, acompanhar rankings, salvar favoritos, montar perfil gamer e gerenciar gift cards.'
}
]
})
const token = useCookie('token')
const hasToken = computed(() => Boolean(token.value))