-
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
880a981
commit 0e657d7
Showing
9 changed files
with
377 additions
and
114 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 |
---|---|---|
|
@@ -17,3 +17,4 @@ node_modules | |
vite.config.js.timestamp-* | ||
vite.config.ts.timestamp-* | ||
|
||
/.idea |
Large diffs are not rendered by default.
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
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
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,12 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>%sveltekit.error.message%</title> | ||
</head> | ||
<body> | ||
<h1>ERROR</h1> | ||
<h2>%sveltekit.status%</h2> | ||
<p>%sveltekit.error.message%</p> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,28 @@ | ||
<script lang="ts"> | ||
import { page } from '$app/stores'; | ||
export let msg = $page.error!.message; | ||
export let status = $page.status; | ||
</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="/">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 |
---|---|---|
@@ -1,2 +1,26 @@ | ||
<h1>Website for Minicraft+</h1> | ||
<p>New page is under construction. Meanwhile take a look at <a data-sveltekit-reload rel="external" href="./old/index.html">our old site</a>.</p> | ||
<script> | ||
import bannerLogo from '$lib/assets/banner logo.svg'; | ||
</script> | ||
|
||
<div class="flex flex-col items-center justify-center w-full h-screen box-border"> | ||
<div class="flex flex-col bg-green-600 w-full py-8"> | ||
<div class="flex flex-col items-center"> | ||
<img class="size-3/4" src={bannerLogo} alt="Banner"/> | ||
</div> | ||
</div> | ||
|
||
<div class="min-h-0 w-full flex-grow items-center bg-sky-200"> | ||
<div class="mx-auto text-center space-y-6 place-items-center h-full p-10 rounded-xl shadow-2xl my-20 sm:my-auto bg-green-200 border-4 border-green-900"> | ||
<h1 class="text-6xl"> | ||
Under Construction | ||
</h1> | ||
<h2 class="text-5xl"> | ||
Coming Soon | ||
</h2> | ||
<p> | ||
New page is under construction<br/> | ||
Meanwhile take a look at <a data-sveltekit-reload rel="external" href="./old/index.html">our old site</a> | ||
</p> | ||
</div> | ||
</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