forked from INDIGOAZUL/la-tanda-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path50x.html
More file actions
26 lines (26 loc) · 1.31 KB
/
50x.html
File metadata and controls
26 lines (26 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Error del servidor | La Tanda</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', system-ui, sans-serif; background: #0a0a1a; color: #e0e0e0; min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.container { text-align: center; padding: 2rem; }
.code { font-size: 6rem; font-weight: bold; background: linear-gradient(135deg, #FF6B6B, #7B2FBE); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
h1 { font-size: 1.5rem; margin: 1rem 0; }
p { color: #888; margin-bottom: 2rem; }
a { display: inline-block; padding: 12px 32px; background: linear-gradient(135deg, #00FFFF, #7B2FBE); color: #0a0a1a; text-decoration: none; border-radius: 8px; font-weight: 600; transition: opacity 0.3s; }
a:hover { opacity: 0.85; }
</style>
</head>
<body>
<div class="container">
<div class="code">500</div>
<h1>Error temporal del servidor</h1>
<p>Estamos trabajando para solucionarlo. Intenta de nuevo en unos minutos.</p>
<a href="/home-dashboard.html">Volver al inicio</a>
</div>
</body>
</html>