diff --git a/home.html b/home.html new file mode 100644 index 0000000..e37e352 --- /dev/null +++ b/home.html @@ -0,0 +1,86 @@ + + +
+
<!-- ENCABEZADO -->
+<div style="text-align: center; margin-bottom: 50px;">
+    <h1 style="font-size: 2.5rem; color: #1976d2; margin-bottom: 10px;">Base de Conocimiento</h1>
+    <p style="font-size: 1.2rem; color: #666;">El Día - Documentación Centralizada</p>
+    <div style="width: 60px; height: 4px; background: #1976d2; margin: 20px auto; border-radius: 2px;"></div>
+</div>
+
+<!-- GRILLA DE TARJETAS -->
+<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px;">
+
+    <!-- TARJETA: SISTEMAS -->
+    <a href="/es/sistemas" style="text-decoration: none;">
+        <div class="wiki-card" style="background: white; padding: 30px; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); border: 1px solid #eee; text-align: center; transition: all 0.3s ease; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;">
+            <div style="font-size: 40px; margin-bottom: 15px;">🖥️</div>
+            <h3 style="margin: 0; color: #333; font-size: 1.2rem;">Sistemas</h3>
+            <p style="color: #888; font-size: 0.9rem; margin-top: 5px;">Servidores, redes y hardware.</p>
+        </div>
+    </a>
+
+    <!-- TARJETA: TÉCNICA -->
+    <a href="/es/tecnica" style="text-decoration: none;">
+        <div class="wiki-card" style="background: white; padding: 30px; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); border: 1px solid #eee; text-align: center; transition: all 0.3s ease; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;">
+            <div style="font-size: 40px; margin-bottom: 15px;">🔧</div>
+            <h3 style="margin: 0; color: #333; font-size: 1.2rem;">Técnica</h3>
+            <p style="color: #888; font-size: 0.9rem; margin-top: 5px;">Procedimientos y soporte.</p>
+        </div>
+    </a>
+
+    <!-- TARJETA: REDACCIÓN -->
+    <a href="/es/redaccion" style="text-decoration: none;">
+        <div class="wiki-card" style="background: white; padding: 30px; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); border: 1px solid #eee; text-align: center; transition: all 0.3s ease; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;">
+            <div style="font-size: 40px; margin-bottom: 15px;">📰</div>
+            <h3 style="margin: 0; color: #333; font-size: 1.2rem;">Redacción</h3>
+            <p style="color: #888; font-size: 0.9rem; margin-top: 5px;">Guías para editores y periodistas.</p>
+        </div>
+    </a>
+
+    <!-- TARJETA: PUBLICIDAD -->
+    <a href="/es/publicidad" style="text-decoration: none;">
+        <div class="wiki-card" style="background: white; padding: 30px; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); border: 1px solid #eee; text-align: center; transition: all 0.3s ease; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;">
+            <div style="font-size: 40px; margin-bottom: 15px;">📢</div>
+            <h3 style="margin: 0; color: #333; font-size: 1.2rem;">Publicidad</h3>
+            <p style="color: #888; font-size: 0.9rem; margin-top: 5px;">Pautas comerciales y banners.</p>
+        </div>
+    </a>
+
+    <!-- TARJETA: MANUALES -->
+    <a href="/es/manuales" style="text-decoration: none;">
+        <div class="wiki-card" style="background: white; padding: 30px; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); border: 1px solid #eee; text-align: center; transition: all 0.3s ease; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;">
+            <div style="font-size: 40px; margin-bottom: 15px;">📚</div>
+            <h3 style="margin: 0; color: #333; font-size: 1.2rem;">Manuales</h3>
+            <p style="color: #888; font-size: 0.9rem; margin-top: 5px;">Documentación general.</p>
+        </div>
+    </a>
+
+    <!-- TARJETA: ACCESOS RÁPIDOS -->
+    <a href="/es/telefonosutiles" style="text-decoration: none;">
+        <div class="wiki-card" style="background: #e3f2fd; padding: 30px; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); border: 1px solid #bbdefb; text-align: center; transition: all 0.3s ease; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;">
+            <div style="font-size: 40px; margin-bottom: 15px;">📞</div>
+            <h3 style="margin: 0; color: #1565c0; font-size: 1.2rem;">Teléfonos</h3>
+            <p style="color: #1e88e5; font-size: 0.9rem; margin-top: 5px;">Directorio útil interno.</p>
+        </div>
+    </a>
+
+</div>
+
+
+ + \ No newline at end of file