mirror of
https://github.com/koreanbots/core.git
synced 2025-12-16 14:30:22 +00:00
11 lines
286 B
TypeScript
11 lines
286 B
TypeScript
import { NextPage } from 'next'
|
|
import Container from '../components/Container'
|
|
import Notice from '../components/Notice'
|
|
import { ErrorText } from '../utils/Constants'
|
|
|
|
const NotFound: NextPage = () => {
|
|
return <Notice header='404' desc={ErrorText[404]} />
|
|
}
|
|
|
|
export default NotFound
|