Some checks failed
CI / v3 / Check ui (pull_request) Failing after 15s
CI / v3 / Test backend (pull_request) Failing after 16s
CI / v3 / Docker / backend (pull_request) Has been skipped
CI / v3 / Docker / runner (pull_request) Has been skipped
CI / v3 / Docker / ui (pull_request) Has been skipped
- Remove all pre-v3 code: scraper, ui-v2, backend v1, ios v1+v2, legacy CI workflows - Flatten v3/ contents to repo root - Add Doppler secrets management (project=libnovel, config=prd) - Add justfile with doppler run wrappers for all docker compose commands - Strip hardcoded env fallbacks from docker-compose.yml - Add minimal README.md - Clean up .gitignore
52 lines
1.4 KiB
HTML
52 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>502 — Service Unavailable</title>
|
|
<style>
|
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
body {
|
|
min-height: 100svh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 1rem;
|
|
background: #09090b;
|
|
color: #a1a1aa;
|
|
font-family: ui-sans-serif, system-ui, sans-serif;
|
|
padding: 2rem;
|
|
text-align: center;
|
|
}
|
|
.code {
|
|
font-size: clamp(4rem, 20vw, 8rem);
|
|
font-weight: 800;
|
|
color: #27272a;
|
|
line-height: 1;
|
|
letter-spacing: -0.04em;
|
|
}
|
|
h1 { font-size: 1.25rem; font-weight: 600; color: #e4e4e7; }
|
|
p { font-size: 0.9rem; max-width: 36ch; line-height: 1.6; }
|
|
a {
|
|
margin-top: 0.5rem;
|
|
display: inline-block;
|
|
padding: 0.6rem 1.4rem;
|
|
border-radius: 0.5rem;
|
|
background: #f59e0b;
|
|
color: #000;
|
|
font-weight: 600;
|
|
font-size: 0.875rem;
|
|
text-decoration: none;
|
|
}
|
|
a:hover { background: #d97706; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="code">502</div>
|
|
<h1>Service Unavailable</h1>
|
|
<p>The server is temporarily unreachable. Please try again in a moment.</p>
|
|
<a href="/">Go home</a>
|
|
</body>
|
|
</html>
|