import { CheckCircleRounded, Circle } from "@mui/icons-material"; import { Alert, AlertTitle, Card, CardContent, Container, Divider, Link, Stack, Typography, } from "@mui/material"; import React, { FC } from "react"; import { ErrorPageProps } from "./ErrorPage"; export const UpstreamErrorPage: FC = ({ data }) => { const status = data?.status || 500; console.log(data.statusText); return ( Error {status} Web Server is down YOU (BROWSER) Working POMERIUM Working UPSTREAM HOST Error What happened? The web server is not returning a connection. As a result, the webpage is not displaying. What can I do? If you are a visitor of this website: Please try again in a few minutes. If you are the owner of this website: Contact your hosting provider letting them know your web server is not responding. Error Text: {data.statusText} Additional troubleshooting information. ); }; export default UpstreamErrorPage;