1
0
cvsa-legacy/packages/frontend/src/pages/404.astro
2025-03-30 07:31:24 +08:00

11 lines
303 B
Plaintext

---
import Layout from '@layouts/Layout.astro';
---
<Layout>
<main class="flex flex-col items-center justify-center min-h-screen gap-8">
<h1 class="text-9xl font-thin">404</h1>
<p class="text-xl font-medium">咦……页面去哪里了(゚Д゚≡゚д゚)!?</p>
</main>
</Layout>