blob: 03af709b5d3d81479d66356fefc1dc05c7ffa1d9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { A } from "@solidjs/router";
export default function NotFound() {
return (
<section>
<h1>404</h1>
<p>This page does not exist. <A href="/">Return home</A>.</p>
</section>
);
}
|