()
| 2 | import classes from './ServerError.module.css'; |
| 3 | |
| 4 | export function ServerError() { |
| 5 | return ( |
| 6 | <div className={classes.root}> |
| 7 | <Container> |
| 8 | <div className={classes.label}>500</div> |
| 9 | <Title className={classes.title}>Something bad just happened...</Title> |
| 10 | <Text size="lg" ta="center" className={classes.description}> |
| 11 | Our servers could not handle your request. Don't worry, our development team was |
| 12 | already notified. Try refreshing the page. |
| 13 | </Text> |
| 14 | <Group justify="center"> |
| 15 | <Button variant="white" size="md"> |
| 16 | Refresh the page |
| 17 | </Button> |
| 18 | </Group> |
| 19 | </Container> |
| 20 | </div> |
| 21 | ); |
| 22 | } |
nothing calls this directly
no outgoing calls
no test coverage detected