Unhealthy.tsx 474 B

1234567891011121314151617
  1. import { Page } from "src/components";
  2. export function Unhealthy() {
  3. return (
  4. <Page className="page-center">
  5. <div className="container-tight py-4">
  6. <div className="empty">
  7. <div className="empty-img">
  8. <img src="/images/unhealthy.svg" alt="" />
  9. </div>
  10. <p className="empty-title">The API is not healthy.</p>
  11. <p className="empty-subtitle text-secondary">We'll keep checking and hope to be back soon!</p>
  12. </div>
  13. </div>
  14. </Page>
  15. );
  16. }