fix: apply QA fixes to correct build source (public/src/)
All checks were successful
Deploy to Production / Deploy to Server (push) Successful in 1m41s
All checks were successful
Deploy to Production / Deploy to Server (push) Successful in 1m41s
- BUG-055: Remove duplicate preconnect tags from homepage - BUG-058: Add twitter:image meta tag to homepage - BUG-060: Add og:title/description/url to sub-pages (impressum/privacy/terms/status) - BUG-061: Already done in sitemap.xml - BUG-067: Add skip-to-content link via nav partial + styles_base - BUG-069: Footer already added to docs.html - BUG-053: Minify app.js and status.js, update HTML refs
This commit is contained in:
parent
7037b885e2
commit
e57a45b431
13 changed files with 121 additions and 112 deletions
|
|
@ -5,6 +5,9 @@
|
|||
<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">
|
||||
<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">
|
||||
|
|
@ -46,6 +49,8 @@ footer .container { display: flex; justify-content: space-between; align-items:
|
|||
}
|
||||
|
||||
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
|
||||
.skip-link { position: absolute; top: -100%; left: 16px; background: var(--accent); color: #0b0d11; padding: 8px 16px; border-radius: 0 0 8px 8px; font-weight: 600; font-size: 0.9rem; z-index: 200; transition: top 0.2s; text-decoration: none; }
|
||||
.skip-link:focus { top: 0; }
|
||||
</style>
|
||||
<style>
|
||||
.status-hero { text-align: center; padding: 48px 0 32px; }
|
||||
|
|
@ -71,6 +76,7 @@ footer .container { display: flex; justify-content: space-between; align-items:
|
|||
</head>
|
||||
<body>
|
||||
|
||||
<a href="#main" class="skip-link">Skip to content</a>
|
||||
<nav aria-label="Main navigation">
|
||||
<div class="container">
|
||||
<a href="/" class="logo">⚡ Doc<span>Fast</span></a>
|
||||
|
|
@ -82,7 +88,7 @@ footer .container { display: flex; justify-content: space-between; align-items:
|
|||
</div>
|
||||
</nav>
|
||||
|
||||
<main>
|
||||
<main id="main">
|
||||
<div class="container">
|
||||
<div id="status-content" class="status-loading">Loading system status…</div>
|
||||
</div>
|
||||
|
|
@ -102,6 +108,6 @@ footer .container { display: flex; justify-content: space-between; align-items:
|
|||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="/status.js"></script>
|
||||
<script src="/status.min.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue