-
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
1 parent
d298b68
commit 522991c
Showing
9 changed files
with
36 additions
and
29 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,29 @@ | ||
<script lang="ts"> | ||
import { page } from '$app/stores'; | ||
import { base } from "$app/paths"; | ||
export let msg = $page.error!.message; | ||
export let status = $page.status.toString(); | ||
</script> | ||
|
||
<div class="flex flex-col h-screen"> | ||
<!-- Reference: https://tailwindcomponents.com/component/simple-404-page-template --> | ||
<div class="flex items-center justify-center bg-green-400 py-48"> | ||
<div class="flex flex-col"> | ||
<div class="flex flex-col items-center"> | ||
<div class="text-green-700 font-bold text-7xl"> | ||
{status} | ||
</div> | ||
|
||
<div class="font-bold text-3xl xl:text-7xl lg:text-6xl md:text-5xl mt-10"> | ||
{msg} | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<footer class="bg-green-200" aria-labelledby="footer-heading"> | ||
<div class="flex p-12 flex-col items-center m-auto px-6 text-3xl"> | ||
<a href="{base}/">Go back to home</a> | ||
</div> | ||
</footer> | ||
</div> |
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 @@ | ||
export const prerender = true; |
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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