import { NextPage } from 'next' import { ErrorText } from '@utils/Constants' const NotFound: NextPage = () => { return

404

{ ErrorText[404] }

} export default NotFound