fix: button code on mobile

also change /status to /activity and also mess up linting (lol)
This commit is contained in:
trafficlunar 2026-02-14 22:16:28 +00:00
parent 133486724a
commit 508731facb
7 changed files with 48 additions and 169 deletions

11
src/pages/activity.astro Normal file
View file

@ -0,0 +1,11 @@
---
import Layout from "../layouts/Layout.astro";
import Music from "../components/Music.svelte";
import Computer from "../components/Computer.svelte";
---
<Layout>
<Music client:load />
<Computer client:load />
</Layout>