All checks were successful
Deploy to Production / Deploy to Server (push) Successful in 1m44s
- BUG-053: Add terser JS minification to build process - BUG-060: Add og:image, twitter:card, twitter:image to sub-pages - BUG-067: Update skip-link to #main-content on all pages
54 lines
2.7 KiB
HTML
54 lines
2.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>System Status — DocFast</title>
|
|
<meta name="description" content="Real-time system status for the DocFast PDF API.">
|
|
<meta property="og:title" content="System Status — DocFast">
|
|
<meta property="og:description" content="Real-time system status for the DocFast PDF API.">
|
|
<meta property="og:url" content="https://docfast.dev/status">
|
|
<meta property="og:image" content="https://docfast.dev/og-image.png">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:image" content="https://docfast.dev/og-image.png">
|
|
<link rel="canonical" href="https://docfast.dev/status">
|
|
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>⚡</text></svg>">
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
|
|
{{> styles_base}}
|
|
<style>
|
|
.status-hero { text-align: center; padding: 48px 0 32px; }
|
|
.status-indicator { display: inline-flex; align-items: center; gap: 12px; font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
|
|
.status-dot { width: 16px; height: 16px; border-radius: 50%; display: inline-block; }
|
|
.status-dot.ok { background: var(--accent); box-shadow: 0 0 12px var(--accent); }
|
|
.status-dot.degraded { background: #f59e0b; box-shadow: 0 0 12px #f59e0b; }
|
|
.status-dot.error { background: #ef4444; box-shadow: 0 0 12px #ef4444; }
|
|
.status-meta { color: var(--muted); font-size: 0.85rem; margin-top: 8px; }
|
|
.status-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
|
|
@media (max-width: 600px) { .status-grid { grid-template-columns: 1fr; } }
|
|
.status-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
|
|
.status-card h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 16px; }
|
|
.status-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); }
|
|
.status-row:last-child { border-bottom: none; }
|
|
.status-label { color: var(--muted); font-size: 0.9rem; }
|
|
.status-value { font-weight: 600; font-size: 0.9rem; }
|
|
.status-value.ok { color: var(--accent); }
|
|
.status-value.warn { color: #f59e0b; }
|
|
.status-value.err { color: #ef4444; }
|
|
.status-loading { text-align: center; padding: 60px 0; color: var(--muted); }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
{{> nav}}
|
|
|
|
<main id="main-content">
|
|
<div class="container">
|
|
<div id="status-content" class="status-loading">Loading system status…</div>
|
|
</div>
|
|
</main>
|
|
|
|
{{> footer}}
|
|
|
|
<script src="/status.min.js"></script>
|
|
</body>
|
|
</html>
|