diff --git a/src/pages/404.tsx b/src/pages/404.tsx new file mode 100644 index 0000000..241918b --- /dev/null +++ b/src/pages/404.tsx @@ -0,0 +1,25 @@ +import { Html } from "@kitajs/html"; +import Layout from "src/layout"; + +export default function NotFound() { + return ( + +
+

404

+ +

+ Relax, you're lost. +

+ + + + Go back home + + +
+
+ ); +}