-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
115 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<script lang="ts"> | ||
import Metadata from "$lib/components/head/Metadata.svelte"; | ||
import Containers from "$lib/components/ui/containers" | ||
import { Button } from "$lib/components/ui/button"; | ||
</script> | ||
|
||
<Metadata | ||
description="Error 404: Page not found. Oink!" | ||
pageTitle="404" | ||
/> | ||
|
||
<Containers.Content class="flex flex-col items-center"> | ||
<picture class="w-full flex flex-col items-center"> | ||
<img alt="404 - Page Not Found" src="/404-light.svg" class="my-8 hidden dark:block" style="max-width: 60%" /> | ||
<img alt="404 - Page Not Found" src="/404.svg" class="my-8 dark:hidden" style="max-width: 60%" /> | ||
</picture> | ||
|
||
<div style="padding-top: 1em" class="text-3xl title"> | ||
<Button href="/" size="lg" class="text-3xl py-10">Click here to return home</Button> | ||
</div> | ||
</Containers.Content> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.