-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #110 from 25Pi25/master
Update error page display
- Loading branch information
Showing
2 changed files
with
11 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
import { Box, Typography, Link } from '@mui/material'; | ||
|
||
export default function ErrorPage() { | ||
return <Box textAlign='center' alignItems='center'> | ||
return <Box textAlign='center' alignItems='center' sx={{ background: "rgba(255,255,255,0.8)" }}> | ||
<h1>Uh Oh!</h1> | ||
<Typography> | ||
Looks like the server ran into an error. This typically happens when our sprite server is down, and we'll try to get it back up as soon as possible. | ||
</Typography> | ||
<Typography> | ||
If this problem still occurs, check server uptime at <Link href="https://status.pmdcollab.org/">PMDCollab Status</Link>. | ||
If this problem still occurs, check <Link href="https://discord.gg/skytemple">our discord</Link> for updates. | ||
</Typography> | ||
</Box> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters