nyx-dashboard/pages/404.js

12 lines
204 B
JavaScript
Raw Normal View History

2023-03-03 17:48:43 +01:00
import Head from "next/head";
export default function Custom404() {
return (
<>
<Head>
<title>404</title>
</Head>
<pre>404 - Page Not Found</pre>
</>
);
}