16 lines
No EOL
298 B
Text
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> |