mirror of
https://github.com/koreanbots/core.git
synced 2025-12-16 14:30:22 +00:00
13 lines
218 B
TypeScript
13 lines
218 B
TypeScript
import { NextPage } from 'next'
|
|
import Container from '../components/Container'
|
|
|
|
const NotFound: NextPage = () => {
|
|
return (
|
|
<Container paddingTop>
|
|
<h1>Not Found</h1>
|
|
</Container>
|
|
)
|
|
}
|
|
|
|
export default NotFound
|