-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproyectos.html
More file actions
95 lines (87 loc) · 5.12 KB
/
proyectos.html
File metadata and controls
95 lines (87 loc) · 5.12 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Proyectos IA | Txema Ríos</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; line-height: 1.6; color: #333; background: #f9fafb; }
header { background: #0d1117; color: white; padding: 20px 0; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
header nav { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; gap: 30px; align-items: center; }
header a { color: white; text-decoration: none; font-size: 14px; }
header a:hover { color: #58a6ff; }
main { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
h1 { font-size: 32px; margin-bottom: 10px; }
h2 { font-size: 18px; color: #666; margin-bottom: 30px; font-weight: 400; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; margin-top: 30px; }
.card { background: white; border: 1px solid #e0e0e0; border-radius: 8px; padding: 20px; transition: all 0.3s; }
.card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); border-color: #0969da; }
.card h3 { font-size: 18px; margin-bottom: 8px; color: #0969da; }
.card p { font-size: 14px; color: #666; margin-bottom: 12px; }
.card a { color: #0969da; text-decoration: none; font-weight: 500; }
.card a:hover { text-decoration: underline; }
.badge { display: inline-block; background: #f0f0f0; padding: 4px 8px; border-radius: 4px; font-size: 12px; color: #666; margin-right: 5px; }
footer { background: #0d1117; color: #888; text-align: center; padding: 20px; margin-top: 60px; font-size: 12px; }
</style>
</head>
<body>
<header>
<nav>
<strong>Txema Ríos</strong>
<a href="index.html">Inicio</a>
<a href="proyectos.html">Proyectos</a>
<a href="productos.html">Productos</a>
<a href="index.html#areas">Áreas</a>
<a href="index.html#perfil">Perfil</a>
<a href="contacto.html">Contacto</a>
<a href="https://github.com/chema74" target="_blank" rel="noopener noreferrer">GitHub</a>
</nav>
</header>
<main>
<h1>Proyectos de IA Aplicada</h1>
<h2>Monorrepos con laboratorios reproducibles y agentes locales.</h2>
<div class="grid">
<div class="card">
<h3>🤖 Agentes IA</h3>
<p><span class="badge">Portfolio</span><span class="badge">Python</span></p>
<p>Portfolio técnico de agentes IA aplicada a negocio, documentación y automatización empresarial.</p>
<a href="https://github.com/chema74/Agentes_IA" target="_blank">Ver en GitHub →</a>
</div>
<div class="card">
<h3>🧪 10 Laboratorios IA</h3>
<p><span class="badge">Monorepo</span><span class="badge">Local-first</span></p>
<p>Monorepo con 10 laboratorios: RAG, LLM evaluation, observabilidad, privacidad, backend, gobernanza, agentes enterprise, seguridad, Microsoft y Google.</p>
<a href="https://github.com/chema74/laboratorios-ia-aplicada" target="_blank">Ver en GitHub →</a>
</div>
<div class="card">
<h3>📊 IA para Decisión y Sistemas</h3>
<p><span class="badge">Monorepo</span><span class="badge">Big Data</span></p>
<p>Inteligencia de decisión con Big Data, sistemas API-first de IA y evaluación operativa de agentes.</p>
<a href="https://github.com/chema74/ia-decision-sistemas" target="_blank">Ver en GitHub →</a>
</div>
<div class="card">
<h3>🏢 Agentes para PYMES</h3>
<p><span class="badge">Portfolio</span><span class="badge">12 Agentes</span></p>
<p>10 agentes IA locales para PYMES + 2 agentes adicionales (ESG y finanzas). Arquitectura modular, tests, demo reproducible.</p>
<a href="https://github.com/chema74/agentes-ia-pymes" target="_blank">Ver en GitHub →</a>
</div>
<div class="card">
<h3>📈 Evaluador de Madurez</h3>
<p><span class="badge">PYMES</span><span class="badge">Auditoría</span></p>
<p>Sistema automatizado de auditoría y evaluación de madurez en IA para PYMES.</p>
<a href="https://github.com/chema74/evaluador-madurez-ia-pymes" target="_blank">Ver en GitHub →</a>
</div>
<div class="card">
<h3>🌐 Web Pública</h3>
<p><span class="badge">GitHub Pages</span></p>
<p>Web pública del portfolio técnico: proyectos, agentes IA, RAG documental y automatización.</p>
<a href="https://github.com/chema74/chema74.github.io" target="_blank">Ver en GitHub →</a>
</div>
</div>
</main>
<footer>
<p>© 2025 Txema Ríos. Licencia CC BY-SA 4.0.</p>
</footer>
</body>
</html>