From 8e2f956f91b9bfd87f44cd650aad1e379e746e12 Mon Sep 17 00:00:00 2001 From: theoneand33 Date: Mon, 7 Sep 2026 14:31:49 +1200 Subject: [PATCH 1/2] feat(home): add recently played row with separator --- src/layout/layout.astro | 18 +++++++++++++++++ src/pages/index.astro | 43 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+) diff --git a/src/layout/layout.astro b/src/layout/layout.astro index 81e83c9..83dfdd1 100644 --- a/src/layout/layout.astro +++ b/src/layout/layout.astro @@ -263,5 +263,23 @@ const moreGames = (() => { >

+ { + seo && slug && ( + + ) + } diff --git a/src/pages/index.astro b/src/pages/index.astro index 045c1d0..e3ee574 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -39,6 +39,49 @@ const popularGames = defaultGames.slice(0, POPULAR_COUNT); } + + +

All unblocked games

{ From ad683df88991da5540e07d83d6aa89cd6e8602f4 Mon Sep 17 00:00:00 2001 From: theoneand33 Date: Mon, 7 Sep 2026 14:37:31 +1200 Subject: [PATCH 2/2] agent: filter stale slugs in recently played row (#80) --- src/pages/index.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/index.astro b/src/pages/index.astro index e3ee574..6811eb3 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -48,7 +48,7 @@ const popularGames = defaultGames.slice(0, POPULAR_COUNT);

-