Skip to content

Commit

Permalink
adding maintenance banner (#1303)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias-luger authored Aug 26, 2024
1 parent 6e93230 commit ae27683
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions components/MainApp/MainApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,21 @@ export function MainApp(props: any) {

return (
<>
<div
style={{
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
flexDirection: 'column',
backgroundColor: 'yellow',
color: 'black',
height: '100px',
marginBottom: '5px'
}}
>
<h1 style={{ fontSize: 'large' }}>Maintenance</h1>
<p>We are performing some database maintenance and may not be available until Derpy ends.</p>
</div>
<OfflineBanner />
<TopLoadingAnimation />
{props.children}
Expand Down

0 comments on commit ae27683

Please sign in to comment.