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

{message || ErrorText[404]}

) } export default NotFound