custom error page 404 travolta

This commit is contained in:
matthieu42morin 2024-04-29 05:03:20 +02:00
parent 5d9d187000
commit a57f126d6c
1 changed files with 39 additions and 0 deletions

39
src/routes/+error.svelte Normal file
View File

@ -0,0 +1,39 @@
<script>
import { page } from '$app/stores';
</script>
{#if $page.status === 404}
<div class="flex flex-col items-center m-4 py-8">
<div
class="relative mb-[3.33vh] flex h-24 w-24 md:h-64 md:w-64 items-center justify-center bg-surface-800"
>
<img
class="object-fill"
src="/assets/animations/travolta_confused.webp"
alt="Travolta Confused gif"
/>
<h1 class="h1 absolute leading-[5rem] text-white">404</h1>
</div>
<h2 class="h4 mb-2">
? My God, what are you doing here, this page doesn't exist and so on and so on.
</h2>
<p>
This site either never existed or just suddenly committed disappearance from this
universe.
</p>
</div>
{:else}
<h2>{$page.status}</h2>
{#if $page.error}
<p class="subhead">{$page.error.message}</p>
{/if}
<p><strong>Sorry!</strong> A grave error has occured. Maybe try one of these links?</p>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/blog">Blog</a></li>
<li><a href="/projects">Projects</a></li>
</ul>
{/if}