import { FunctionalComponent, h } from "preact"; import { Link } from 'preact-router/match'; import style from "./style.module.css"; const Notfound: FunctionalComponent = () => { return (

Error 404

That page doesn't exist.

Back to Home

); }; export default Notfound;