Skip to content

Commit

Permalink
add basic 404 page
Browse files Browse the repository at this point in the history
  • Loading branch information
Kandles11 committed Jun 29, 2024
1 parent b6825d1 commit f894a6f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/pages/404.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
import '../styles/reset.css'
import '../styles/index.css'
import '../styles/App.css'
import BaseLayout from '../layouts/base.astro'
---

<BaseLayout title="About">
<div
class="main-container"
style="padding-top: 120px; display: flex; background: linear-gradient(#230508 70%, var(--text-dark)); flex-direction: column; height: 80vh;"
>
<div
style="display: flex; flex-direction:column; margin: auto; align-items: center; justify-content: center; text-align: center; color: white; font-family: Unbounded;"
>
<h1 style="font-family: Unbounded;">Uh Oh! You shouldn't be here!</h1>
<a style="font-family: Unbounded; opacity: 80%;" href="/">
Click here to go home.
</a>
</div>
</div>
</BaseLayout>

0 comments on commit f894a6f

Please sign in to comment.