-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
149 lines (129 loc) · 3.88 KB
/
index.html
File metadata and controls
149 lines (129 loc) · 3.88 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Angel Gomez Salazar</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: #2B2B3B;
background-color: #F8F9FA;
overflow-x: hidden;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 120px 20px;
}
h1 {
font-size: 36px;
font-weight: 600;
color: #2B2B3B;
margin-bottom: 30px;
letter-spacing: -0.02em;
animation: fadeIn 0.8s ease-out;
}
.bio {
animation: slideUp 0.8s ease-out 0.2s both;
}
.bio p {
margin-bottom: 24px;
font-size: 18px;
line-height: 1.7;
color: #4A5568;
font-weight: 400;
}
.bio p:last-child {
margin-bottom: 0;
}
.highlight {
color: #2B2B3B;
font-weight: 600;
}
.links {
margin-top: 40px;
display: flex;
gap: 20px;
animation: slideUp 0.8s ease-out 0.4s both;
}
.links a {
color: #2B2B3B;
text-decoration: none;
font-weight: 500;
transition: opacity 0.3s ease;
border-bottom: 2px solid #E2E8F0;
padding-bottom: 2px;
}
.links a:hover {
opacity: 0.7;
border-bottom-color: #2B2B3B;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 600px) {
.container {
padding: 80px 20px;
}
h1 {
font-size: 28px;
}
.bio p {
font-size: 16px;
}
.links {
flex-wrap: wrap;
gap: 15px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Angel Gomez Salazar</h1>
<div class="bio">
<p>
I'm building the future of <span class="highlight">robotics at Meta</span>,
where I'm helping lead systems engineering as one of the first engineers on the humanoid robotics effort.
</p>
<p>
Over nine years at Meta, I've shipped products that push the boundaries
of what's possible. Previously, I led systems engineering for
<span class="highlight">Orion AR Glasses</span> and <span class="highlight">Ray-Ban Meta</span>,
and built the infrastructure that shipped Oculus Quest, Quest 2, and Rift to millions.
</p>
<p>
Before diving into hardware, I worked on Meta's core GraphQL team,
helping scale one of the world's largest API infrastructures.
</p>
</div>
<div class="links">
<a href="https://www.linkedin.com/in/angel-gomez-salazar-600169a8/" target="_blank">LinkedIn</a>
<a href="https://x.com/angel_gomez_s" target="_blank">X</a>
<a href="https://github.com/AGS-/ags" target="_blank">GitHub</a>
</div>
</div>
</body>
</html>