add basic html page

This commit is contained in:
2025-11-19 22:15:52 -06:00
parent 1bb90e3820
commit 8a2c20df0b

24
index.html Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Service Status</title>
<style>
body { font-family: Arial, sans-serif; margin: 40px; background-color: #f5f5f5; }
.container { max-width: 800px; margin: 0 auto; background: white; padding: 20px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.status { color: #28a745; font-weight: bold; }
.header { text-align: center; margin-bottom: 30px; }
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>Service Status</h1>
<p class="status">✓ All systems operational</p>
</div>
<p>This service is currently running normally. If you're seeing this page, the service is functioning as expected.</p>
<p>For technical inquiries, please contact the system administrator.</p>
</div>
</body>
</html>