-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (67 loc) · 1.53 KB
/
Copy pathindex.html
File metadata and controls
69 lines (67 loc) · 1.53 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
---
layout: home
author_profile: true
---
<div class="hero">
<h1 class="hero__title">ComandRE</h1>
<p class="hero__subtitle">Irving Saenz Tapia</p>
<p class="hero__byline">Pentester · Red Team Operator · Offensive Security</p>
<p class="hero__description">Guías de seguridad ofensiva, privilegio escalación Linux/Windows, explotación web, CTF, y herramientas de pentesting.</p>
<div class="hero__actions">
<a href="/about/" class="btn btn--primary">Sobre Mí</a>
<a href="/categories/" class="btn btn--outline">Posts</a>
<a href="https://www.linkedin.com/in/irving-saenz-tapia-a95822357" class="btn btn--outline">LinkedIn</a>
</div>
</div>
<style>
.hero {
text-align: center;
padding: 3rem 1rem 2rem;
margin-bottom: 2rem;
}
.hero__title {
font-size: 3em;
font-weight: 800;
letter-spacing: -0.04em;
color: #39ff14;
margin-bottom: 0.1em;
}
.hero__subtitle {
font-size: 1.1em;
color: #f59e0b;
font-weight: 500;
margin-bottom: 0.1em;
}
.hero__byline {
font-size: 0.95em;
color: #a0a0b0;
margin-bottom: 0.8em;
letter-spacing: 0.03em;
}
.hero__description {
font-size: 1.05em;
color: #a0a0b0;
max-width: 600px;
margin: 0 auto 1.5em;
line-height: 1.6;
}
.hero__actions {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
.hero__actions .btn {
padding: 0.6em 1.5em;
font-size: 0.95em;
}
.btn--outline {
background: transparent;
border: 2px solid #f59e0b;
color: #f59e0b;
}
.btn--outline:hover {
background: rgba(245, 158, 11, 0.1);
color: #f59e0b;
}
</style>