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

@@ -79,7 +79,7 @@
:class="['text-sm', removingId === game.game_id && 'animate-spin']" />
<span class="hidden sm:inline">{{
removingId === game.game_id ? 'Removendo...' : 'Remover'
}}</span>
}}</span>
</button>
</li>
</ul>
@@ -107,6 +107,16 @@ definePageMeta({
layout: 'protected'
})
useHead({
title: 'Favoritos | GameVerse',
meta: [
{
name: 'description',
content: 'Gerencie os jogos que você salvou como favoritos no GameVerse.'
}
]
})
const WISHLIST_API_BASE_URL = 'https://gameverse-wishlist-production.up.railway.app'
const { $toast } = useNuxtApp()