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

Error 404

That page doesn't exist.

Back to Home

); }; export default Notfound;