feat: added 404 page

This commit is contained in:
원더 2021-01-04 20:11:44 +09:00
parent 1b56c6e1c6
commit 340bed616f

10
pages/404.tsx Normal file
View File

@ -0,0 +1,10 @@
import { NextPage } from 'next'
import Container from '../components/Container'
const NotFound: NextPage = () => {
return <Container>
<h1>GG</h1>
</Container>
}
export default NotFound