nyx-dashboard/pages/404.js
2022-01-09 05:38:17 +08:00

11 lines
193 B
JavaScript

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