-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitlab.html
More file actions
108 lines (93 loc) · 4.71 KB
/
gitlab.html
File metadata and controls
108 lines (93 loc) · 4.71 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
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Michael Le | Staff Product Designer</title> <link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700&family=Space+Mono:wght@400;700&display=swap" rel="stylesheet"> <style>:root {
--bg-beige: #f2efe4; /* Deeper beige for better texture */
--ink-black: #242421;
--brand-yellow: rgb(250, 249, 24);
--border-color: rgba(36, 36, 33, 0.15);
}
body {
margin: 0;
background-color: var(--bg-beige);
color: var(--ink-black);
font-family: 'Space Mono', monospace;
line-height: 1.5;
padding: 60px 24px;
}
.container {
max-width: 800px;
margin: 0 auto;
}
/* Nav - Minimalist Mono */
nav {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 120px;
font-size: 0.8rem;
border-bottom: 1px solid var(--border-color);
padding-bottom: 10px;
}
/* Hero - Bold Staff IC Branding */
.hero-h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: clamp(3rem, 10vw, 5.5rem);
line-height: 0.85;
margin: 0;
letter-spacing: -3px;
}
.staff-label {
font-size: 0.9rem;
font-weight: 700;
background: var(--brand-yellow);
display: inline-block;
padding: 2px 10px;
margin-top: 15px;
border: 1px solid var(--ink-black);
}
/* Narrative Section */
.bio-lead {
font-size: 1.25rem;
margin: 60px 0 40px 0;
max-width: 680px;
}
/* Impact Table - Staff IC Proof */
.impact-grid {
border: 1px solid var(--ink-black);
margin: 40px 0;
font-size: 0.9rem;
}
.grid-row {
display: flex;
border-bottom: 1px solid var(--border-color);
}
.grid-row:last-child { border-bottom: none; }
.grid-label {
width: 140px;
padding: 12px;
border-right: 1px solid var(--border-color);
background: rgba(0,0,0,0.03);
color: #777;
}
.grid-value {
padding: 12px;
flex: 1;
}
/* Secondary Copy */
.bio-secondary {
color: #555;
max-width: 600px;
margin-bottom: 60px;
}
.btn {
background: var(--ink-black);
color: var(--bg-beige);
padding: 14px 28px;
text-decoration: none;
font-weight: 700;
display: inline-block;
transition: 0.2s ease;
}
.btn:hover {
background: var(--brand-yellow);
color: var(--ink-black);
}
.impact-bold { font-weight: 700; color: var(--ink-black); }</style> </head> <body> <div class="container"> <nav> <span>MICHAEL_LE_PORTFOLIO_V4.0</span> <div> <a href="#" style="margin-left:20px; color:inherit; text-decoration:none">WORK</a> <a href="#" style="margin-left:20px; color:inherit; text-decoration:none">WRITING</a> </div> </nav> <section> <h1 class="hero-h1">Michael Le</h1> <div class="staff-label">STAFF PRODUCT DESIGNER // INDIVIDUAL CONTRIBUTOR</div> <p class="bio-lead"> I bridge the gap between <span class="impact-bold">complex engineering</span> and human-centered design, architecting products for over <span class="impact-bold">5 million users</span> at GitLab. </p> <div class="impact-grid"> <div class="grid-row"> <div class="grid-label">STATUS</div> <div class="grid-value">Leading Code Review & Source Code Management [cite: 55, 62]</div> </div> <div class="grid-row"> <div class="grid-label">FISCAL_IMPACT</div> <div class="grid-value">Unlocked <span class="impact-bold">$911.1K ARR</span> via Beyond Identity integration [cite: 10, 29]</div> </div> <div class="grid-row"> <div class="grid-label">SYSTEMS</div> <div class="grid-value">WebIDE migration to VS Code, React Design Systems</div> </div> <div class="grid-row"> <div class="grid-label">TECHNICAL</div> <div class="grid-value">Direct Ruby contributions to AsciiDoc compatibility [cite: 30]</div> </div> </div> <p class="bio-secondary"> Rather than people management, I focus on scale—mentoring practitioners through craft [cite: 12] and evolving the technical standards of design systems to drive measurable business outcomes[cite: 58]. </p> <a href="#" class="btn">DISCOVER THE CRAFT</a> </section> </div> </body> </html>