2021-11-16 22:52:23 +01:00
|
|
|
import Head from "next/head";
|
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>
|
2022-01-08 22:38:17 +01:00
|
|
|
<pre>404 - Page Not Found</pre>
|
2021-06-21 05:18:30 +02:00
|
|
|
</>
|
2021-11-16 22:52:23 +01:00
|
|
|
);
|
|
|
|
}
|