From 675187cdf82ea4b28211f12158e87c107d9bb032 Mon Sep 17 00:00:00 2001 From: theoneand33 Date: Tue, 15 Sep 2026 13:04:30 +1200 Subject: [PATCH] feat(home): style popular links as pills - Replace plain blue links with pill badges on home page --- src/pages/index.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/index.astro b/src/pages/index.astro index 55307d0..862d6eb 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -46,7 +46,7 @@ const popularGames = knownGames.slice(0, POPULAR_COUNT);

Popular:

{ popularGames.map((slug) => ( - {gamesMap[slug].title} ))