hillside / index.html
sonuprasad23's picture
Uploaded
df7d15c
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hillside Dashboard API - Status</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
<style>
:root {
--bg-color: #111827;
--card-color: #1F2937;
--text-color: #D1D5DB;
--header-color: #FFFFFF;
--accent-color: #22C55E;
--subtle-text: #6B7281;
}
body {
margin: 0;
font-family: 'Inter', sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 2rem;
box-sizing: border-box;
}
.container {
background-color: var(--card-color);
border-radius: 1rem;
padding: 3rem;
text-align: center;
border: 1px solid rgba(255, 255, 255, 0.1);
max-width: 500px;
width: 100%;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.logo {
width: 48px;
height: 48px;
margin: 0 auto 1.5rem auto;
stroke: #3B82F6;
}
h1 {
color: var(--header-color);
font-weight: 700;
font-size: 1.5rem;
margin: 0 0 0.5rem 0;
}
.status-indicator {
display: flex;
justify-content: center;
align-items: center;
gap: 0.75rem;
margin-top: 1.5rem;
margin-bottom: 1.5rem;
background-color: rgba(34, 197, 94, 0.1);
border: 1px solid rgba(34, 197, 94, 0.2);
border-radius: 9999px;
padding: 0.5rem 1rem;
display: inline-flex;
}
.status-dot {
width: 10px;
height: 10px;
background-color: var(--accent-color);
border-radius: 50%;
animation: pulse 2s infinite;
}
.status-text {
color: var(--accent-color);
font-weight: 600;
}
p {
line-height: 1.6;
color: var(--subtle-text);
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
</style>
</head>
<body>
<div class="container">
<svg class="logo" fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7H5a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h3m8-12h3a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3M8 7v10m8-10v10"/><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m14 12-4-2m4 4-4 2"/>
</svg>
<h1>Hillside Dashboard Backend</h1>
<p>The Application Programming Interface (API) for the Hillside Dashboard.</p>
<div class="status-indicator">
<div class="status-dot"></div>
<span class="status-text">Service is Running</span>
</div>
<p>This service is for API requests only. Your frontend application should connect to this URL to fetch data.</p>
</div>
</body>
</html>