Revela-v4/src/pages/jp/404.astro
2024-01-23 14:58:40 -06:00

16 lines
No EOL
298 B
Text

---
import Layout from "../../layouts/Layout.astro";
---
<Layout title="404 | Alu">
<div class="main-content error-page">
<h1>404!</h1>
<p>The content you have requested could not be found!</p>
</div>
</Layout>
<style>
.error-page {
color: white
}
</style>