aboutsummaryrefslogtreecommitdiff
path: root/packages/anastasis-webui/src/routes/notfound/index.tsx
blob: 444e03d4433eb318cb64435658a11c00e40cc57d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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&apos;t exist.</p>
            <Link href="/">
                <h4>Back to Home</h4>
            </Link>
        </div>
    );
};

export default Notfound;