-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
108 lines (101 loc) · 4.75 KB
/
Copy path404.html
File metadata and controls
108 lines (101 loc) · 4.75 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<!-- Google Tracking (GTM + GA4) -->
<script src="js/google-tracking.min.js?v=2026-03-19_1" defer data-gtm-id="GTM-5B3B68K7" data-ga-id="G-227Z6EMS7R"></script>
<!-- End Google Tag Manager -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Página no encontrada - DigDev Solutions</title>
<meta name="description" content="La página que buscas no existe. Regresa a DigDev Solutions para encontrar nuestros servicios de desarrollo de software para minería." />
<meta name="robots" content="noindex, nofollow" />
<link rel="canonical" href="https://digdev.cl/" />
<link rel="icon" href="img/favicon.png" type="image/x-icon" />
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&display=swap" />
<link rel="stylesheet" href="css/font-awesome_6.5.1_all.min.css" />
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: "#1193d4",
},
fontFamily: {
display: ["Manrope", "sans-serif"],
},
},
},
};
</script>
</head>
<body class="bg-gray-50 font-display">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5B3B68K7" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="min-h-screen flex items-center justify-center px-4">
<div class="max-w-md w-full text-center">
<!-- Logo -->
<div class="mb-8">
<a href="/" class="inline-flex items-center gap-2 text-2xl font-bold text-primary">
<i class="fas fa-code"></i>
<span>DigDev</span>
</a>
</div>
<!-- 404 Error -->
<div class="mb-8">
<h1 class="text-9xl font-extrabold text-primary mb-4">404</h1>
<h2 class="text-2xl font-bold text-gray-900 mb-4">Página no encontrada</h2>
<p class="text-gray-600 mb-8">
Lo sentimos, la página que buscas no existe o ha sido movida.
</p>
</div>
<!-- Actions -->
<div class="space-y-4">
<a href="/" class="inline-block w-full bg-primary text-white font-bold py-3 px-6 rounded-lg hover:bg-primary/90 transition-colors">
Volver al Inicio
</a>
<div class="flex gap-4 justify-center">
<a href="/#Servicios" class="text-primary hover:text-primary/80 font-medium">Servicios</a>
<a href="/#Contacto" class="text-primary hover:text-primary/80 font-medium">Contacto</a>
<a href="/#Nosotros" class="text-primary hover:text-primary/80 font-medium">Nosotros</a>
</div>
</div>
<!-- Contact Info -->
<div class="mt-12 pt-8 border-t border-gray-200">
<p class="text-gray-600 mb-4">¿Necesitas ayuda?</p>
<div class="flex justify-center gap-6">
<a href="mailto:colivares@digdev.cl" class="text-primary hover:text-primary/80">
<i class="fas fa-envelope"></i>
</a>
<a href="https://wa.me/56999896880" target="_blank" rel="noopener" class="text-primary hover:text-primary/80">
<i class="fab fa-whatsapp"></i>
</a>
<a href="https://www.linkedin.com/in/digdevsolutions/" target="_blank" rel="noopener" class="text-primary hover:text-primary/80">
<i class="fab fa-linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<!-- Schema.org for 404 page -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "Página no encontrada - DigDev Solutions",
"description": "Error 404 - La página solicitada no fue encontrada",
"url": "https://digdev.cl/404.html",
"mainEntity": {
"@type": "Organization",
"name": "DigDev Solutions",
"url": "https://digdev.cl"
}
}
</script>
</body>
</html>