feat: add error page

:%s
This commit is contained in:
lytrankieio123
2021-09-14 16:37:16 +07:00
parent 2849e291fb
commit 0463fb7808

9
pages/_error.tsx Normal file
View File

@@ -0,0 +1,9 @@
import { Layout } from 'src/components/common'
import { ErrorPage } from 'src/components/modules/error'
export default function NotFound() {
return (
<ErrorPage/>
)
}
NotFound.Layout = Layout