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, 23 insertions, 0 deletions
diff --git a/apps/accounts/src/app/pages/not-found.svelte b/apps/accounts/src/app/pages/not-found.svelte
new file mode 100644
index 0000000..34568ba
--- /dev/null
+++ b/apps/accounts/src/app/pages/not-found.svelte
@@ -0,0 +1,23 @@
+<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>