16 lines
555 B
TypeScript
16 lines
555 B
TypeScript
import type { NextPage } from 'next';
|
|
|
|
import { UTILITY_CONSTANTS } from '@/constants/utilityConstants';
|
|
|
|
import ErrorPage from '@/components/common/errorpage/ErrorPage';
|
|
|
|
const ServerErrorPage: NextPage = () => {
|
|
return (
|
|
<>
|
|
<ErrorPage errorType='Error 500' title='Sorry, Currently facing Internal Server Error' details='The server encountered an internal error or misconfiguration and was unable to complete your request.' image={UTILITY_CONSTANTS.IMAGE.ERROR.ERROR_505} />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default ServerErrorPage;
|