diff options
| author | Florian Dold <florian@dold.me> | 2021-10-11 10:58:55 +0200 |
|---|---|---|
| committer | Florian Dold <florian@dold.me> | 2021-10-11 10:58:55 +0200 |
| commit | f23a8ee4d356645ae3f91862552b256f230c6bcb (patch) | |
| tree | 641bf808ef6c6bf7eb003d96f6f7ed5654f854b8 /packages/anastasis-webui/src/routes/notfound/index.tsx | |
| parent | 0bbaafcd36ce68f95faee0b91738a169848c7a90 (diff) | |
anastasis-webui: first commit
Diffstat (limited to 'packages/anastasis-webui/src/routes/notfound/index.tsx')
| -rw-r--r-- | packages/anastasis-webui/src/routes/notfound/index.tsx | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/anastasis-webui/src/routes/notfound/index.tsx b/packages/anastasis-webui/src/routes/notfound/index.tsx new file mode 100644 index 000000000..444e03d44 --- /dev/null +++ b/packages/anastasis-webui/src/routes/notfound/index.tsx @@ -0,0 +1,17 @@ +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't exist.</p> + <Link href="/"> + <h4>Back to Home</h4> + </Link> + </div> + ); +}; + +export default Notfound; |
