import PageTitle from '@app/components/Common/PageTitle'; import defineMessages from '@app/utils/defineMessages'; import { ArrowRightCircleIcon } from '@heroicons/react/24/outline'; import Link from 'next/link'; import { useIntl } from 'react-intl'; const messages = defineMessages('pages', { errormessagewithcode: '{statusCode} - {error}', pagenotfound: 'Page Not Found', returnHome: 'Return Home', }); const Custom404 = () => { const intl = useIntl(); return (