-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (72 loc) · 3.53 KB
/
Copy pathindex.html
File metadata and controls
85 lines (72 loc) · 3.53 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PanaSaldo | Versión descontinuada</title>
<meta name="robots" content="noindex, nofollow">
<link rel="icon" href="favicon.png">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
</head>
<body class="min-h-screen bg-gradient-to-br from-slate-900 via-slate-800 to-slate-900 flex items-center justify-center text-white">
<div class="relative max-w-lg w-full mx-6">
<div class="absolute inset-0 bg-blue-600/20 blur-3xl rounded-full"></div>
<div class="relative bg-slate-900/80 backdrop-blur-xl border border-slate-700 rounded-2xl shadow-2xl p-8 text-center">
<div class="flex justify-center mb-6">
<div class="h-16 w-16 rounded-full bg-blue-600/20 flex items-center justify-center">
<svg class="h-8 w-8 text-blue-400" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 9v3m0 4h.01M5.07 19h13.86c1.54 0 2.5-1.67 1.73-3L13.73 4c-.77-1.33-2.69-1.33-3.46 0L3.34 16c-.77 1.33.19 3 1.73 3z"/>
</svg>
</div>
</div>
<h1 class="text-2xl font-bold tracking-tight mb-3">
Versión descontinuada
</h1>
<p class="text-slate-300 mb-4">
Esta versión antigua de <span class="font-semibold text-white">PanaSaldo</span>
ya no recibe mantenimiento y
<span class="text-red-400 font-semibold">no funciona correctamente</span>.
</p>
<p class="text-slate-400 mb-8">
El acceso ha sido deshabilitado. Serás redirigido automáticamente a la nueva versión.
</p>
<div class="flex flex-col gap-3">
<a
href="https://panasaldo-dashboard.vercel.app/"
class="inline-flex items-center justify-center gap-2 rounded-xl bg-blue-600 hover:bg-blue-500 transition px-6 py-3 font-semibold shadow-lg shadow-blue-600/20"
>
Ir a la nueva versión
<svg class="h-4 w-4" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" d="M13 7l5 5m0 0l-5 5m5-5H6"/>
</svg>
</a>
<span class="text-xs text-slate-500">
Redirección automática en 3 segundos
</span>
</div>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', () => {
Swal.fire({
title: 'Actualización obligatoria',
html: `
<p>La versión vieja de <strong>PanaSaldo</strong> fue descontinuada.</p>
<p class="mt-2">No es posible continuar aquí.</p>
`,
icon: 'warning',
allowOutsideClick: false,
allowEscapeKey: false,
showConfirmButton: false,
background: '#0f172a',
color: '#ffffff',
backdrop: 'rgba(0,0,0,0.85)'
});
setTimeout(() => {
window.location.replace('https://panasaldo-dashboard.vercel.app/');
}, 3000);
});
</script>
</body>
</html>