2025-12-02 11:02:00 +05:30

16 lines
535 B
TypeScript
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;