nyx-dashboard/pages/404.js
2023-03-03 16:48:43 +00:00

11 lines
204 B
JavaScript

import Head from "next/head";
export default function Custom404() {
return (
<>
<Head>
<title>404</title>
</Head>
<pre>404 - Page Not Found</pre>
</>
);
}