import React from 'react'; import { Alert, Button, Space } from 'antd'; import { ReloadOutlined } from '@ant-design/icons'; const OfflineMode = ({ onRetry }) => { return (

The frontend is running in offline mode because backend services are not available.

To enable full functionality:

  1. Start the backend services: docker-compose up -d
  2. Or start individual services for development
  3. Refresh this page once services are running
} type="info" showIcon style={{ marginBottom: 16 }} /> ); }; export default OfflineMode;