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

{ErrorText[404]}

) } export default NotFound