16 lines
535 B
TypeScript
16 lines
535 B
TypeScript
import type { NextPage } from 'next';
|
||
|
||
import { UTILITY_CONSTANTS } from '@/constants/utilityConstants';
|
||
|
||
import ErrorPage from '@/components/common/errorpage/ErrorPage';
|
||
|
||
const NetWorkErrorPage: NextPage = () => {
|
||
return (
|
||
<>
|
||
<ErrorPage errorType='Error 404' title='Sorry, The Page You Are Looking For Is Not Available' details='The link you followed may be broken, or the page may have been removed.' image={UTILITY_CONSTANTS.IMAGE.ERROR.ERROR_404} />
|
||
</>
|
||
);
|
||
};
|
||
|
||
export default NetWorkErrorPage;
|