import React from 'react'; import { Box, Typography, Button, CircularProgress } from '@mui/material'; const MaintenancePage = ({ onRetry, checking }) => { return ( EhChadServices is currently under maintenance We're checking the service status and will reload automatically when the backend is available. Please check back in a few moments. {checking ? 'Checking...' : 'Idle'} ); }; export default MaintenancePage;