nyx-dashboard/pages/404.js
2021-11-17 05:52:23 +08:00

12 lines
192 B
JavaScript

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