summaryrefslogtreecommitdiffstats
path: root/apps/accounts/src/app/pages/not-found.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'apps/accounts/src/app/pages/not-found.svelte')
-rw-r--r--apps/accounts/src/app/pages/not-found.svelte23
1 files changed, 0 insertions, 23 deletions
diff --git a/apps/accounts/src/app/pages/not-found.svelte b/apps/accounts/src/app/pages/not-found.svelte
deleted file mode 100644
index 34568ba..0000000
--- a/apps/accounts/src/app/pages/not-found.svelte
+++ /dev/null
@@ -1,23 +0,0 @@
-<script>
- import {link} from "svelte-spa-router";
-</script>
-<style>
- header {
- font-size: 12rem;
- }
-
- main {
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- text-align: center;
- }
-</style>
-
-<main>
- <header>404</header>
- <p>Page not found!</p>
- <a use:link
- href="/">Go to front</a>
-</main>