nyx-dashboard/pages/404.js
2021-06-21 11:18:30 +08:00

12 lines
No EOL
203 B
JavaScript

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