aboutsummaryrefslogtreecommitdiff
path: root/packages/anastasis-webui/src/routes/notfound/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/anastasis-webui/src/routes/notfound/index.tsx')
-rw-r--r--packages/anastasis-webui/src/routes/notfound/index.tsx17
1 files changed, 0 insertions, 17 deletions
diff --git a/packages/anastasis-webui/src/routes/notfound/index.tsx b/packages/anastasis-webui/src/routes/notfound/index.tsx
deleted file mode 100644
index 444e03d44..000000000
--- a/packages/anastasis-webui/src/routes/notfound/index.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import { FunctionalComponent, h } from 'preact';
-import { Link } from 'preact-router/match';
-import style from './style.css';
-
-const Notfound: FunctionalComponent = () => {
- return (
- <div class={style.notfound}>
- <h1>Error 404</h1>
- <p>That page doesn&apos;t exist.</p>
- <Link href="/">
- <h4>Back to Home</h4>
- </Link>
- </div>
- );
-};
-
-export default Notfound;