import {FC} from 'react' import {Link} from 'react-router-dom' import {toAbsoluteUrl} from '../../../../_digifi/helpers' const Error500: FC = () => { return ( <> {/* begin::Title */}

System Error

{/* end::Title */} {/* begin::Text */}
Something went wrong! Please try again later.
{/* end::Text */} {/* begin::Illustration */}
{/* end::Illustration */} {/* begin::Link */}
Return Home
{/* end::Link */} ) } export {Error500}