diff --git a/src/routes/[...404].tsx b/src/routes/[...404].tsx new file mode 100644 index 0000000..689556f --- /dev/null +++ b/src/routes/[...404].tsx @@ -0,0 +1,31 @@ +import { Link } from "solid-app-router"; + +export default function NotFound() { + return ( +
+

+ Not Found +

+

+ Visit{" "} + + solidjs.com + {" "} + to learn how to build Solid apps. +

+

+ + Home + + {" - "} + + About Page + +

+
+ ); +}