nyx-dashboard/pages/404.js

12 lines
203 B
JavaScript
Raw Normal View History

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