-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
52 lines (49 loc) · 2.14 KB
/
404.html
File metadata and controls
52 lines (49 loc) · 2.14 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Página No Encontrada | PixelCorder</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
'inter': ['Inter', 'sans-serif'],
},
colors: {
'primary': '#8b5cf6',
}
}
}
}
</script>
</head>
<body class="font-inter bg-black text-white min-h-screen flex items-center justify-center">
<div class="text-center max-w-md mx-auto px-6">
<div class="mb-8">
<h1 class="text-9xl font-bold text-transparent bg-gradient-to-r from-purple-400 to-pink-400 bg-clip-text mb-4">
404
</h1>
<h2 class="text-2xl font-semibold mb-4">Página No Encontrada</h2>
<p class="text-gray-400 mb-8">
La página que buscas no existe o ha sido movida.
</p>
</div>
<div class="space-y-4">
<a href="index.html" class="inline-flex items-center px-6 py-3 bg-primary hover:bg-purple-700 rounded-full font-medium transition-colors">
← Volver al Inicio
</a>
<div class="flex items-center justify-center space-x-4 mt-8">
<a href="index.html" class="text-gray-400 hover:text-white transition-colors">Inicio</a>
<span class="text-gray-600">•</span>
<a href="index.html#features" class="text-gray-400 hover:text-white transition-colors">Características</a>
<span class="text-gray-600">•</span>
<a href="index.html#app" class="text-gray-400 hover:text-white transition-colors">App</a>
</div>
</div>
</div>
</body>
</html>