nyx-dashboard/pages/404.js

13 lines
192 B
JavaScript
Raw Normal View History

2021-11-16 22:52:23 +01:00
import Head from "next/head";
2021-06-21 05:18:30 +02:00
2021-06-20 15:49:56 +02:00
export default function Custom404() {
2021-11-16 22:52:23 +01:00
return (
2021-06-21 05:18:30 +02:00
<>
2021-11-16 22:52:23 +01:00
<Head>
<title>404</title>
</Head>
<h1>404 - Page Not Found</h1>
2021-06-21 05:18:30 +02:00
</>
2021-11-16 22:52:23 +01:00
);
}