12 lines
192 B
JavaScript
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>
|
|
</>
|
|
);
|
|
}
|