From 86e1aeb9739f4a65264e063ff4b62b045865b3af Mon Sep 17 00:00:00 2001 From: Ethan J Lewis Date: Sat, 9 May 2026 11:33:06 -0500 Subject: [PATCH] feat: rename mystery.astro -> index.astro, fix imports for src/ root Halfstreet now lives at halfstreet.io as the entire site, so the game serves at / instead of /mystery. After git-filter-repo lifted src/mystery/ to src/, the page's css/ts imports need to drop the mystery/ segment. --- src/pages/{mystery.astro => index.astro} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename src/pages/{mystery.astro => index.astro} (93%) diff --git a/src/pages/mystery.astro b/src/pages/index.astro similarity index 93% rename from src/pages/mystery.astro rename to src/pages/index.astro index 236b8f5..13132e8 100644 --- a/src/pages/mystery.astro +++ b/src/pages/index.astro @@ -1,5 +1,5 @@ --- -import '../mystery/ui/crt.css' +import '../ui/crt.css' --- @@ -42,8 +42,8 @@ import '../mystery/ui/crt.css' document.documentElement.setAttribute('data-mystery-theme', stored === 'ansi' ? 'ansi' : 'amber')