-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html.old.html
More file actions
447 lines (397 loc) · 15.6 KB
/
Copy pathexample.html.old.html
File metadata and controls
447 lines (397 loc) · 15.6 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UX Research Portfolio</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary: #2563eb;
--primary-dark: #1e40af;
--text-primary: #1f2937;
--text-secondary: #6b7280;
--bg-light: #f9fafb;
--border: #e5e7eb;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
line-height: 1.6;
color: var(--text-primary);
}
.header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 4rem 2rem;
text-align: center;
}
.header h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
font-weight: 700;
}
.header p {
font-size: 1.25rem;
opacity: 0.95;
}
.nav {
background: white;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 100;
}
.nav-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
gap: 2rem;
padding: 1rem 2rem;
}
.nav a {
color: var(--text-secondary);
text-decoration: none;
font-weight: 500;
transition: color 0.2s;
}
.nav a:hover {
color: var(--primary);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 3rem 2rem;
}
.section {
margin-bottom: 4rem;
}
.section-title {
font-size: 2rem;
margin-bottom: 1rem;
color: var(--text-primary);
border-bottom: 3px solid var(--primary);
display: inline-block;
padding-bottom: 0.5rem;
}
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.skill-card {
background: white;
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
transition: transform 0.2s, box-shadow 0.2s;
}
.skill-card:hover {
transform: translateY(-4px);
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.skill-card h3 {
color: var(--primary);
margin-bottom: 0.75rem;
font-size: 1.25rem;
}
.skill-card ul {
list-style: none;
color: var(--text-secondary);
}
.skill-card li {
padding: 0.25rem 0;
padding-left: 1.25rem;
position: relative;
}
.skill-card li:before {
content: "→";
position: absolute;
left: 0;
color: var(--primary);
}
.projects-grid {
display: grid;
gap: 2rem;
margin-top: 2rem;
}
.project-card {
background: white;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
overflow: hidden;
transition: transform 0.2s, box-shadow 0.2s;
}
.project-card:hover {
transform: translateY(-4px);
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.project-header {
background: var(--bg-light);
padding: 1.5rem;
border-bottom: 2px solid var(--border);
}
.project-header h3 {
color: var(--text-primary);
font-size: 1.5rem;
margin-bottom: 0.5rem;
}
.project-type {
display: inline-block;
background: var(--primary);
color: white;
padding: 0.25rem 0.75rem;
border-radius: 12px;
font-size: 0.875rem;
font-weight: 500;
}
.project-content {
padding: 1.5rem;
}
.project-content p {
color: var(--text-secondary);
margin-bottom: 1rem;
}
.project-meta {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid var(--border);
}
.meta-item {
display: flex;
flex-direction: column;
}
.meta-label {
font-size: 0.75rem;
color: var(--text-secondary);
text-transform: uppercase;
font-weight: 600;
letter-spacing: 0.5px;
}
.meta-value {
font-size: 0.875rem;
color: var(--text-primary);
margin-top: 0.25rem;
}
.cta-button {
display: inline-block;
background: var(--primary);
color: white;
padding: 0.75rem 1.5rem;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
transition: background 0.2s;
margin-top: 1rem;
}
.cta-button:hover {
background: var(--primary-dark);
}
.security-note {
background: #fef3c7;
border-left: 4px solid #f59e0b;
padding: 1rem;
margin: 2rem 0;
border-radius: 4px;
}
.security-note strong {
color: #92400e;
}
footer {
background: var(--text-primary);
color: white;
text-align: center;
padding: 2rem;
margin-top: 4rem;
}
@media (max-width: 768px) {
.header h1 {
font-size: 2rem;
}
.nav-content {
flex-direction: column;
gap: 0.5rem;
}
.skills-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<header class="header">
<h1>Your Name</h1>
<p>UX Researcher & Product Manager | Human-Centered Design Advocate</p>
</header>
<nav class="nav">
<div class="nav-content">
<a href="#about">About</a>
<a href="#skills">Skills</a>
<a href="#projects">Portfolio Projects</a>
<a href="#contact">Contact</a>
</div>
</nav>
<div class="container">
<section id="about" class="section">
<h2 class="section-title">About Me</h2>
<p style="margin-top: 1.5rem; color: var(--text-secondary); font-size: 1.125rem; line-height: 1.8;">
I'm a UX researcher and product manager passionate about creating user-centered products that solve real problems. With a strong foundation in qualitative and quantitative research methods, I bridge the gap between user needs and business objectives. I'm also technically proficient, understanding the importance of secure, ethical data handling in all aspects of product development.
</p>
</section>
<section id="skills" class="section">
<h2 class="section-title">Core Competencies</h2>
<div class="skills-grid">
<div class="skill-card">
<h3>UX Research Methods</h3>
<ul>
<li>User interviews & contextual inquiry</li>
<li>Usability testing & A/B testing</li>
<li>Survey design & analysis</li>
<li>Persona & journey mapping</li>
<li>Diary studies & ethnography</li>
</ul>
</div>
<div class="skill-card">
<h3>Product Management</h3>
<ul>
<li>Product strategy & roadmapping</li>
<li>Stakeholder management</li>
<li>Agile/Scrum methodologies</li>
<li>Feature prioritization</li>
<li>Cross-functional leadership</li>
</ul>
</div>
<div class="skill-card">
<h3>Technical & Security</h3>
<ul>
<li>HTML/CSS/JavaScript basics</li>
<li>Data privacy & GDPR compliance</li>
<li>Secure data handling practices</li>
<li>SQL & analytics tools</li>
<li>API understanding & integration</li>
</ul>
</div>
<div class="skill-card">
<h3>Analysis & Communication</h3>
<ul>
<li>Quantitative & qualitative analysis</li>
<li>Data visualization</li>
<li>Stakeholder presentations</li>
<li>Research report writing</li>
<li>Workshop facilitation</li>
</ul>
</div>
</div>
</section>
<section id="projects" class="section">
<h2 class="section-title">Portfolio Projects</h2>
<div class="security-note">
<strong>Security & Privacy Note:</strong> All projects below use in-memory storage only (no cookies, no external servers). Personal data never leaves your device. All tools are client-side only and built with privacy-first principles.
</div>
<div class="projects-grid">
<div class="project-card">
<div class="project-header">
<h3>Interactive Research Repository</h3>
<span class="project-type">UX Tool</span>
</div>
<div class="project-content">
<p>A searchable, taggable repository for storing research insights with built-in synthesis capabilities. Demonstrates understanding of research organization and knowledge management systems.</p>
<div class="project-meta">
<div class="meta-item">
<span class="meta-label">Skills Shown</span>
<span class="meta-value">Research synthesis, Information architecture</span>
</div>
<div class="meta-item">
<span class="meta-label">Tech Stack</span>
<span class="meta-value">React, Client-side storage</span>
</div>
</div>
<a href="#" class="cta-button">View Demo</a>
</div>
</div>
<div class="project-card">
<div class="project-header">
<h3>User Interview Analysis Dashboard</h3>
<span class="project-type">Analysis Tool</span>
</div>
<div class="project-content">
<p>Upload interview transcripts and generate thematic analysis with sentiment tracking. Built to show both research methodology knowledge and technical implementation of qualitative analysis.</p>
<div class="project-meta">
<div class="meta-item">
<span class="meta-label">Skills Shown</span>
<span class="meta-value">Thematic analysis, Data visualization</span>
</div>
<div class="meta-item">
<span class="meta-label">Security</span>
<span class="meta-value">Client-side only, No data persistence</span>
</div>
</div>
<a href="#" class="cta-button">View Demo</a>
</div>
</div>
<div class="project-card">
<div class="project-header">
<h3>Usability Testing Calculator</h3>
<span class="project-type">Research Tool</span>
</div>
<div class="project-content">
<p>Calculate sample sizes, confidence intervals, and statistical significance for usability tests. Demonstrates quantitative research understanding and ability to build practical PM tools.</p>
<div class="project-meta">
<div class="meta-item">
<span class="meta-label">Skills Shown</span>
<span class="meta-value">Statistical analysis, UX metrics</span>
</div>
<div class="meta-item">
<span class="meta-label">Tech Stack</span>
<span class="meta-value">JavaScript, Statistical libraries</span>
</div>
</div>
<a href="#" class="cta-button">View Demo</a>
</div>
</div>
<div class="project-card">
<div class="project-header">
<h3>Case Study: E-commerce Checkout Redesign</h3>
<span class="project-type">Research Case Study</span>
</div>
<div class="project-content">
<p>End-to-end case study showing discovery research, usability testing, iteration, and post-launch analysis. Includes sanitized research artifacts and measurable business impact.</p>
<div class="project-meta">
<div class="meta-item">
<span class="meta-label">Methods Used</span>
<span class="meta-value">Interviews, usability tests, A/B testing</span>
</div>
<div class="meta-item">
<span class="meta-label">Impact</span>
<span class="meta-value">23% increase in conversion rate</span>
</div>
</div>
<a href="#" class="cta-button">Read Case Study</a>
</div>
</div>
</div>
</section>
<section id="contact" class="section">
<h2 class="section-title">Get In Touch</h2>
<p style="margin-top: 1.5rem; color: var(--text-secondary); font-size: 1.125rem;">
I'm currently open to new opportunities in UX research and product management. Let's connect!
</p>
<div style="margin-top: 2rem;">
<a href="mailto:your.email@example.com" class="cta-button">Email Me</a>
<a href="https://linkedin.com/in/yourprofile" class="cta-button" style="margin-left: 1rem;">LinkedIn</a>
</div>
</section>
</div>
<footer>
<p>© 2026 Your Name. Built with security and privacy in mind.</p>
<p style="margin-top: 0.5rem; font-size: 0.875rem; opacity: 0.8;">All portfolio tools use client-side processing only. No data is stored or transmitted.</p>
</footer>
</body>
</html>