fix metadata change in games

This commit is contained in:
Alexander Navarro 2023-09-09 11:30:44 -03:00
parent 333d6c95a3
commit 606d9a285b
3 changed files with 16 additions and 11 deletions

View file

@ -69,13 +69,13 @@ const games = await getCollection('games', (_, idx) => idx < 3);
{
games.map((item) => (
<li>
<a href={`games/${item.slug}`}>{item.data.Title}</a>
<a href={`games/${item.slug}`}>{item.data.title}</a>
</li>
))
}
</ul>
<div slot="footer" class="text-end">
<a href="">See more...</a>
<a href="/games">See more...</a>
</div>
</Card>
</div>