| 1 | export default function HealthzPage() { |
| 2 | return ( |
| 3 | <html> |
| 4 | <head> |
| 5 | <title>AiToEarn</title> |
| 6 | <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| 7 | </head> |
| 8 | <body style={{ margin: 0, padding: 0 }}> |
| 9 | <div |
| 10 | style={{ |
| 11 | display: 'flex', |
| 12 | justifyContent: 'center', |
| 13 | alignItems: 'center', |
| 14 | height: '100vh', |
| 15 | fontFamily: 'Arial, sans-serif', |
| 16 | backgroundColor: '#fff', |
| 17 | }} |
| 18 | > |
| 19 | <div style={{ textAlign: 'center' }}> |
| 20 | <h1 style={{ color: '#4CAF50', marginBottom: '20px' }}>OK</h1> |
| 21 | <p style={{ color: '#666', fontSize: '16px' }}>Service is healthy</p> |
| 22 | </div> |
| 23 | </div> |
| 24 | </body> |
| 25 | </html> |
| 26 | ) |
| 27 | } |
| 28 |