-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (57 loc) · 3.14 KB
/
index.html
File metadata and controls
64 lines (57 loc) · 3.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
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Santiago Cavanna | CISO Advisor</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
body { background-color: #0f172a; color: #f8fafc; }
.glass { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); }
</style>
</head>
<body class="font-sans antialiased">
<nav class="p-6 flex justify-between items-center max-w-5xl mx-auto">
<div class="text-xl font-bold tracking-tighter">SCAVANNA<span class="text-blue-500">.COM</span></div>
<div class="space-x-6 text-sm font-medium text-slate-400">
<a href="#about" class="hover:text-white transition">Sobre mí</a>
<a href="/cisopov" class="hover:text-white transition">CISO POV</a>
<a href="https://github.com/scavanna" class="hover:text-white transition">GitHub</a>
</div>
</nav>
<main class="max-w-5xl mx-auto px-6 py-20">
<section id="about" class="space-y-6">
<h1 class="text-5xl md:text-7xl font-extrabold tracking-tight">
Metacognición para la <br>
<span class="text-blue-500 text-transparent bg-clip-text bg-gradient-to-r from-blue-400 to-emerald-400">
Ciberseguridad.
</span>
</h1>
<p class="text-xl text-slate-400 max-w-2xl leading-relaxed">
CISO Advisor en Microsoft MCSA, enfocado en Excelencia Operacional, Gobierno de Ciberseguridad corporativa y la evolución del rol de seguridad en ecosistemas tecnológicos complejos. Desarrollo de Arquetipos, Mindsets, Sesgos Cognitivos y modelos mentales. Comunicación y resolucion visual de problemas.
</p>
<div class="flex gap-4 pt-4">
<a href="mailto:santiago.cavanna@gmail.com" class="bg-white text-slate-900 px-6 py-3 rounded-lg font-bold hover:bg-blue-50 transition">
Contacto
</a>
<a href="/cisopov" class="glass px-6 py-3 rounded-lg font-bold hover:bg-slate-800 transition">
Explorar Proyectos
</a>
</div>
</section>
<section class="mt-32 grid md:grid-cols-2 gap-8">
<div class="glass p-8 rounded-2xl">
<h3 class="text-xl font-bold mb-2 text-blue-400">TMCCS</h3>
<p class="text-slate-400">The Meta-cognitive CISO System. Un framework para líderes de seguridad que buscan optimizar su sistema operativo mental.</p>
</div>
<div class="glass p-8 rounded-2xl">
<h3 class="text-xl font-bold mb-2 text-emerald-400">CISO POV</h3>
<p class="text-slate-400">Análisis crítico y perspectivas sobre la entrega de valor y operaciones de seguridad moderna.</p>
</div>
</section>
</main>
<footer class="mt-20 p-10 text-center text-slate-500 text-sm border-t border-slate-800">
© 2026 Santiago Cavanna. Built with GitHub Pages.
</footer>
</body>
</html>