1 import { c } from 'ttag';
3 import internalServerErrorSvg from '@proton/styles/assets/img/errors/error-500.svg';
5 import IllustrationPlaceholder from '../illustration/IllustrationPlaceholder';
7 const InternalServerError = () => {
9 <IllustrationPlaceholder title={c('Error message').t`Internal server error`} url={internalServerErrorSvg}>
11 <span>{c('Error message').t`Brace yourself till we get the error fixed.`}</span>
12 <span>{c('Error message').t`You may also refresh the page or try again later.`}</span>
14 </IllustrationPlaceholder>
18 export default InternalServerError;