mirror of
https://github.com/Xevion/undefined.behavio.rs.git
synced 2025-12-15 18:13:37 -06:00
404 page with header component
This commit is contained in:
15
src/pages/404.astro
Normal file
15
src/pages/404.astro
Normal file
@@ -0,0 +1,15 @@
|
||||
---
|
||||
import Base from "@layouts/Base.astro";
|
||||
import Header from "@components/Header.astro";
|
||||
---
|
||||
|
||||
<Base>
|
||||
<div class="h-screen flex items-center">
|
||||
<div class="flex flex-col items-center">
|
||||
<Header className="!text-7xl" text="404" />
|
||||
<a href="/" data-astro-prefetch="viewport">
|
||||
<span class="font-mono text-center">cd ~</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</Base>
|
||||
Reference in New Issue
Block a user