diff --git a/src/content b/src/content index 9e7ed8e..efff561 160000 --- a/src/content +++ b/src/content @@ -1 +1 @@ -Subproject commit 9e7ed8e596386ab05da15fa81a6d90c19d625f43 +Subproject commit efff561a802a40e93493d01a50ef228bfe0c485e diff --git a/src/pages/games/index.astro b/src/pages/games/index.astro index 61e19bc..c101c93 100644 --- a/src/pages/games/index.astro +++ b/src/pages/games/index.astro @@ -1,15 +1,20 @@ --- +import Layout from '../../layouts/Layout.astro'; import { getCollection } from 'astro:content'; const games = await getCollection('games'); --- -

Games

+ +

Games

- + +
diff --git a/src/pages/index.astro b/src/pages/index.astro index 5090a2c..82b2189 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -69,13 +69,13 @@ const games = await getCollection('games', (_, idx) => idx < 3); { games.map((item) => (
  • - {item.data.Title} + {item.data.title}
  • )) }
    - See more... + See more...