feat: website

This commit is contained in:
trafficlunar 2025-05-03 17:40:21 +01:00
parent fc22cf0330
commit 215e6944a8
45 changed files with 709 additions and 16 deletions

20
src/pages/status.astro Normal file
View file

@ -0,0 +1,20 @@
---
import Layout from "../layouts/Layout.astro";
import Music from "../components/Music.svelte";
---
<Layout>
<section class="!mb-0 !pt-3">
<legend>status</legend>
<div class="flex items-center gap-4 text-subtext0 text-sm font-medium mb-2">
<hr class="flex-grow border-surface1" />
<span>last.fm</span>
<hr class="flex-grow border-surface1" />
</div>
<Music client:only />
<p class="text-center mt-4 text-subtext1 text-sm">more coming soon...</p>
</section>
</Layout>