docs: update home

This commit is contained in:
2025-12-02 15:04:32 +00:00
committed by Técnica
parent 4cd379f214
commit b8eadffd5f

104
home.html
View File

@@ -2,44 +2,57 @@
title: Home title: Home
description: Inicio description: Inicio
published: true published: true
date: 2025-12-02T15:01:35.020Z date: 2025-12-02T15:04:31.576Z
tags: tags:
editor: code editor: code
dateCreated: 2025-12-01T16:00:56.996Z dateCreated: 2025-12-01T16:00:56.996Z
--> -->
<div style="text-align: center; padding: 40px 20px; font-family: sans-serif;"> <div style="font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; color: #444; padding: 40px 20px;">
<h1 style="font-size: 2.8rem; color: #333; margin-bottom: 10px;">Hola, Te damos la bienvenida.</h1> <!-- ENCABEZADO -->
<p style="font-size: 1.2rem; color: #777; margin-bottom: 60px;">Estás en la Wiki interna de El Día.</p> <div style="text-align: center; margin-bottom: 60px;">
<!-- Título con gradiente -->
<h1 style="font-size: 3.5rem; font-weight: 800; margin: 0; letter-spacing: -1px; line-height: 1.2;">
<span style="background: -webkit-linear-gradient(45deg, #1976d2, #42a5f5); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">Hola.</span><br>
Te damos la bienvenida.
</h1>
<!-- 3 COLUMNAS DE CARACTERÍSTICAS (SIN ENLACES) --> <div style="width: 80px; height: 6px; background: #e3f2fd; margin: 20px auto; border-radius: 10px;"></div>
<div style="display: flex; flex-wrap: wrap; justify-content: center; gap: 30px;">
<!-- COLUMNA 1 --> <p style="font-size: 1.3rem; color: #777; max-width: 600px; margin: 0 auto; font-weight: 300;">
<div style="flex: 1; min-width: 250px; max-width: 300px; padding: 20px;"> Estás en el centro de conocimiento de <strong>El Día</strong>. <br>
<div style="font-size: 50px; margin-bottom: 20px;">🔍</div> Todo lo que necesitás saber, en un solo lugar.
<h3 style="color: #1976d2; margin-bottom: 10px;">Buscá</h3> </p>
<p style="color: #666; line-height: 1.5;"> </div>
Encontrá rápidamente manuales, IPs, configuraciones y guías usando el buscador superior.
<!-- CONTENEDOR DE TARJETAS -->
<div style="display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; max-width: 1100px; margin: 0 auto;">
<!-- TARJETA 1: BUSCAR -->
<div class="info-card">
<div class="icon-circle">🔍</div>
<h3 style="color: #222; font-size: 1.4rem; margin: 15px 0 10px;">Buscá</h3>
<p style="color: #666; line-height: 1.6; margin: 0; font-size: 1rem;">
Usá la barra superior para encontrar IPs, configuraciones y manuales al instante.
</p> </p>
</div> </div>
<!-- COLUMNA 2 --> <!-- TARJETA 2: APRENDER -->
<div style="flex: 1; min-width: 250px; max-width: 300px; padding: 20px; border-left: 1px solid #eee; border-right: 1px solid #eee;"> <div class="info-card">
<div style="font-size: 50px; margin-bottom: 20px;">📖</div> <div class="icon-circle">📖</div>
<h3 style="color: #1976d2; margin-bottom: 10px;">Aprendé</h3> <h3 style="color: #222; font-size: 1.4rem; margin: 15px 0 10px;">Aprendé</h3>
<p style="color: #666; line-height: 1.5;"> <p style="color: #666; line-height: 1.6; margin: 0; font-size: 1rem;">
Accedé a documentación detallada sobre Sistemas, Redacción y Técnica para resolver dudas. Documentación detallada de Sistemas, Redacción y Técnica para resolver dudas.
</p> </p>
</div> </div>
<!-- COLUMNA 3 --> <!-- TARJETA 3: MEJORAR -->
<div style="flex: 1; min-width: 250px; max-width: 300px; padding: 20px;"> <div class="info-card">
<div style="font-size: 50px; margin-bottom: 20px;">🚀</div> <div class="icon-circle">🚀</div>
<h3 style="color: #1976d2; margin-bottom: 10px;">Mejorá</h3> <h3 style="color: #222; font-size: 1.4rem; margin: 15px 0 10px;">Mejorá</h3>
<p style="color: #666; line-height: 1.5;"> <p style="color: #666; line-height: 1.6; margin: 0; font-size: 1rem;">
Optimizamos nuestros flujos de trabajo manteniendo la información accesible y estandarizada. Optimizamos el flujo de trabajo manteniendo la información estandarizada y accesible.
</p> </p>
</div> </div>
@@ -47,9 +60,46 @@ dateCreated: 2025-12-01T16:00:56.996Z
</div> </div>
<!-- Ajuste para móviles (quita los bordes en pantallas chicas) --> <!-- ESTILOS CSS AVANZADOS -->
<style> <style>
@media (max-width: 800px) { /* Diseño de las tarjetas */
div[style*="border-left"] { border: none !important; } .info-card {
flex: 1;
min-width: 280px;
max-width: 320px;
background: white;
padding: 40px 30px;
border-radius: 20px;
text-align: center;
/* Sombra suave y elegante */
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
border: 1px solid rgba(0,0,0,0.02);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Efecto al pasar el mouse */
.info-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(25, 118, 210, 0.15);
}
/* Círculo detrás de los iconos */
.icon-circle {
font-size: 40px;
width: 80px;
height: 80px;
line-height: 80px;
background: #e3f2fd; /* Azul muy clarito */
border-radius: 50%;
margin: 0 auto 20px auto;
display: flex;
align-items: center;
justify-content: center;
user-select: none;
}
/* Ajuste para móviles */
@media (max-width: 600px) {
.info-card { margin-bottom: 20px; max-width: 100%; }
} }
</style> </style>