-
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
holybaechu
committed
Feb 22, 2024
1 parent
12982ab
commit a6ab83b
Showing
2 changed files
with
11 additions
and
1 deletion.
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,10 @@ | ||
<script> | ||
import { page } from '$app/stores'; | ||
</script> | ||
|
||
<div class="flex flex-col h-screen justify-center items-center space-y-1"> | ||
<div class="text-6xl font-black"> | ||
{$page.status} | ||
</div> | ||
<div class="text-3xl">{$page.error.message}</div> | ||
</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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
<div class="bg-bg-dark text-white"> | ||
<Header /> | ||
|
||
<main> | ||
<main class="min-h-screen"> | ||
<slot /> | ||
</main> | ||
|
||
|