-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
488 lines (428 loc) · 16 KB
/
Copy pathindex.html
File metadata and controls
488 lines (428 loc) · 16 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
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Curie — A piezoelectric essential oil diffuser, concept to shipped product</title>
<meta name="description" content="Curie: a three-bottle piezoelectric essential oil diffuser. Industrial design, custom PCB, Arduino firmware, native iOS app, retail packaging — shipped to twenty-three paying customers.">
<!-- Open Graph / social -->
<meta property="og:type" content="website">
<meta property="og:title" content="Curie — A piezoelectric essential oil diffuser">
<meta property="og:description" content="From 3D-printed concept to twenty-three units shipped to paying customers. Industrial design, PCB, firmware, iOS app — coordinated directly.">
<meta property="og:image" content="images/hero.jpg">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Curie — A piezoelectric essential oil diffuser">
<meta name="twitter:description" content="From 3D-printed concept to twenty-three units shipped to paying customers.">
<meta name="twitter:image" content="images/hero.jpg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Geist:wght@300;400;500;600&display=swap" rel="stylesheet">
<style>
/* =========================================================================
Tokens
========================================================================= */
:root {
--bg: #F7F5F1;
--bg-shade: #EDEAE3;
--ink: #1A1816;
--ink-soft: #3D3B38;
--ink-muted: #6B6862;
--ink-faint: #A8A39B;
--rule: #D8D3CA;
--accent: #4F9B6E; /* Curie green, used sparingly */
--accent-soft: #EBF3EE;
--serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
--sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
--max-w: 680px;
--max-w-wide: 1200px;
}
/* =========================================================================
Reset + base
========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html {
-webkit-text-size-adjust: 100%;
scroll-behavior: smooth;
}
body {
margin: 0;
background: var(--bg);
color: var(--ink);
font-family: var(--sans);
font-weight: 400;
font-size: 17px;
line-height: 1.65;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-feature-settings: "ss01", "cv11";
}
img {
max-width: 100%;
height: auto;
display: block;
}
p { margin: 0 0 1.4em; }
p:last-child { margin-bottom: 0; }
a {
color: inherit;
text-decoration: none;
border-bottom: 1px solid var(--rule);
transition: border-color 0.2s ease, color 0.2s ease;
}
a:hover {
color: var(--accent);
border-bottom-color: var(--accent);
}
/* =========================================================================
Layout primitives
========================================================================= */
.container {
max-width: var(--max-w);
margin: 0 auto;
padding: 0 24px;
}
.container-wide {
max-width: var(--max-w-wide);
margin: 0 auto;
padding: 0 24px;
}
/* =========================================================================
Site header
========================================================================= */
.site-header {
padding: 28px 24px 0;
max-width: var(--max-w-wide);
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: baseline;
}
.masthead {
font-family: var(--serif);
font-size: 26px;
letter-spacing: -0.01em;
color: var(--ink);
font-style: italic;
}
.masthead::after {
content: "";
display: inline-block;
width: 5px;
height: 5px;
border-radius: 50%;
background: var(--accent);
margin-left: 6px;
transform: translateY(-4px);
}
.site-header .meta {
font-family: var(--sans);
font-size: 12px;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--ink-muted);
font-weight: 500;
}
/* =========================================================================
Hero
========================================================================= */
.hero {
margin-top: 48px;
animation: fadeUp 0.8s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}
.hero-image {
max-width: var(--max-w-wide);
margin: 0 auto;
padding: 0 24px;
}
.hero-image img {
width: 100%;
aspect-ratio: 3 / 2;
object-fit: cover;
background: var(--bg-shade);
}
.hero-title-block {
max-width: var(--max-w);
margin: 56px auto 0;
padding: 0 24px;
animation: fadeUp 1s 0.15s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}
.hero-title {
font-family: var(--serif);
font-size: clamp(72px, 14vw, 152px);
line-height: 0.92;
letter-spacing: -0.03em;
margin: 0 0 0.25em;
color: var(--ink);
font-weight: 400;
}
.hero-title .dot {
color: var(--accent);
}
.hero-dek {
font-family: var(--serif);
font-style: italic;
font-size: clamp(22px, 3.2vw, 30px);
line-height: 1.35;
color: var(--ink-soft);
margin: 0;
max-width: 560px;
}
/* =========================================================================
Intro / lede
========================================================================= */
.lede {
margin-top: 96px;
font-family: var(--serif);
font-size: clamp(22px, 2.5vw, 26px);
line-height: 1.55;
color: var(--ink);
letter-spacing: -0.005em;
}
/* =========================================================================
Sections
========================================================================= */
section.chapter {
margin-top: 120px;
}
.chapter-image {
margin-bottom: 40px;
}
.chapter-image img {
width: 100%;
background: var(--bg-shade);
}
.chapter-image-caption {
font-family: var(--sans);
font-size: 12px;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--ink-faint);
margin-top: 12px;
padding: 0 24px;
max-width: var(--max-w-wide);
margin-left: auto;
margin-right: auto;
}
.chapter-label {
font-family: var(--sans);
font-size: 11px;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--ink-faint);
margin-bottom: 20px;
font-weight: 500;
}
.chapter-label .num {
color: var(--accent);
margin-right: 10px;
}
.chapter-heading {
font-family: var(--serif);
font-size: clamp(38px, 5.5vw, 54px);
line-height: 1.05;
letter-spacing: -0.015em;
color: var(--ink);
margin: 0 0 0.7em;
font-weight: 400;
}
.chapter-body {
font-size: 18px;
line-height: 1.7;
color: var(--ink-soft);
}
/* =========================================================================
Chapter 4 — two-image row (Shipped)
========================================================================= */
.dual-image {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
max-width: var(--max-w-wide);
margin: 0 auto 40px;
padding: 0 24px;
}
.dual-image img {
width: 100%;
aspect-ratio: 4 / 3;
object-fit: cover;
background: var(--bg-shade);
}
@media (max-width: 640px) {
.dual-image {
grid-template-columns: 1fr;
}
}
/* =========================================================================
Footer
========================================================================= */
.site-footer {
margin-top: 160px;
padding: 48px 24px 80px;
border-top: 1px solid var(--rule);
max-width: var(--max-w-wide);
margin-left: auto;
margin-right: auto;
}
.site-footer .inner {
max-width: var(--max-w);
margin: 0 auto;
font-size: 14px;
line-height: 1.7;
color: var(--ink-muted);
}
.site-footer .inner p {
margin-bottom: 1em;
}
.site-footer .colophon {
margin-top: 32px;
font-size: 12px;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--ink-faint);
}
/* =========================================================================
Motion
========================================================================= */
@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(16px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
transition-duration: 0.01ms !important;
}
}
/* =========================================================================
Narrower viewports
========================================================================= */
@media (max-width: 640px) {
.hero { margin-top: 32px; }
.hero-title-block { margin-top: 40px; }
.lede { margin-top: 72px; }
section.chapter { margin-top: 88px; }
.site-footer { margin-top: 112px; }
}
</style>
</head>
<body>
<header class="site-header">
<div class="masthead">Curie</div>
<div class="meta">Portfolio · Daniel Kitchen</div>
</header>
<main>
<!-- =============================================================
HERO
============================================================= -->
<section class="hero">
<div class="hero-image">
<img src="images/hero.jpg"
alt="Curie diffuser on a living room table, amber bottles loaded, LED indicator lit, a person seated in the background.">
</div>
<div class="hero-title-block">
<h1 class="hero-title">Curie<span class="dot">.</span></h1>
<p class="hero-dek">A three-bottle piezoelectric essential oil diffuser. From 3D-printed concept to twenty-three paying customers.</p>
</div>
</section>
<!-- =============================================================
LEDE
============================================================= -->
<div class="container">
<p class="lede">Curie is a consumer essential oil diffuser I took from rough 3D-printed concept to shipped product. Industrial design, custom PCB, Arduino firmware, native iOS app, retail packaging. The mechanical design was mine — self-taught in Shapr3D, no formal background. Hardware and firmware specs were mine too, executed by two contract engineers I managed directly without a PM layer. Twenty-three units shipped to paying customers.</p>
</div>
<!-- =============================================================
CHAPTER 01 — Iteration
============================================================= -->
<section class="chapter">
<div class="chapter-image">
<div style="max-width: var(--max-w-wide); margin: 0 auto; padding: 0 24px;">
<img src="images/evolution.jpg"
alt="Three generations of Curie side by side: a rough white PLA print on the left, a refined white print in the middle, and the final matte-black production unit with visible mist on the right.">
</div>
</div>
<div class="container">
<div class="chapter-label"><span class="num">01</span>Iteration</div>
<h2 class="chapter-heading">Three generations.</h2>
<div class="chapter-body">
<p>The first print, on the left, was a rough PLA shell with a piezoelectric transducer bolted in — just enough to prove the mist concept worked in the form factor I wanted. The second iteration refined the geometry, the airflow path, and the internal layout for serviceability.</p>
<p>The third, in matte black, is the production unit. SLA-printed housing, amber glass quick-connect bottles, custom PCB. The plume above it is the device running.</p>
</div>
</div>
</section>
<!-- =============================================================
CHAPTER 02 — Stack
============================================================= -->
<section class="chapter">
<div class="chapter-image">
<div style="max-width: var(--max-w-wide); margin: 0 auto; padding: 0 24px;">
<img src="images/building.jpg"
alt="Hands working on Curie components — a partially assembled unit on the right, a round PCB with 'Curie' silkscreened on it in the center, essential oil bottles and 3D-printed housing pieces arrayed on a desk.">
</div>
</div>
<div class="container">
<div class="chapter-label"><span class="num">02</span>Stack</div>
<h2 class="chapter-heading">Hardware, firmware, app.</h2>
<div class="chapter-body">
<p>The PCB was laid out in Eagle by a contracted electrical engineer, against requirements I specified — rotary encoder input, four-LED status feedback, piezoelectric driver circuit, WiFi for app control. The silkscreen on that round board reads "Curie."</p>
<p>Firmware was written in Arduino by a contracted programmer, against a pin-map and behavior specification I drafted: timer-driven piezo pulses at four intensity levels, click-based UI, status feedback. The mechanical design — the housing, the bottle retention, the mist path, the base — was entirely mine in Shapr3D.</p>
</div>
</div>
</section>
<!-- =============================================================
CHAPTER 03 — Control
============================================================= -->
<section class="chapter">
<div class="chapter-image">
<div style="max-width: var(--max-w-wide); margin: 0 auto; padding: 0 24px;">
<img src="images/app.jpg"
alt="Hand holding an iPhone running the Curie iOS app, showing three essential oil slots — Lavender Bulgarian, Peppermint Eucalyptus, Cinnamon — each with its own strength slider and auto-timer schedule.">
</div>
</div>
<div class="container">
<div class="chapter-label"><span class="num">03</span>Control</div>
<h2 class="chapter-heading">Three oils, independently scheduled.</h2>
<div class="chapter-body">
<p>The iOS app presents each bottle slot with its own strength slider and auto-timer schedule. Multiple oils can run simultaneously at independent intensities. Hardware, firmware, and app were built in parallel and integrated iteratively — a change to the firmware behavior spec usually meant a matching change in the app the same week.</p>
</div>
</div>
</section>
<!-- =============================================================
CHAPTER 04 — Shipped
============================================================= -->
<section class="chapter">
<div class="dual-image">
<img src="images/box.jpg"
alt="Curie retail packaging: a matte-black box with the Curie wordmark in white, resting on a wooden bench.">
<img src="images/alexa.jpg"
alt="Curie diffuser sitting next to an Amazon Echo speaker on a dark table, the diffuser's blue LED visible, both devices roughly the same height.">
</div>
<div class="container">
<div class="chapter-label"><span class="num">04</span>Shipped</div>
<h2 class="chapter-heading">Twenty-three units to paying customers.</h2>
<div class="chapter-body">
<p>Curie went out in retail-grade packaging to twenty-three paying customers. It lived on the same shelves as their existing smart-home gear — shown here next to an Echo for scale. I handled manufacturing coordination, assembly, packaging, and fulfillment.</p>
<p>The project wasn't scaled past that initial run. But it crossed the gap that mattered: from an idea in a notebook to a product people paid for, built, shipped, and used.</p>
</div>
</div>
</section>
</main>
<!-- =============================================================
FOOTER
============================================================= -->
<footer class="site-footer">
<div class="inner">
<p>Curie was active 2019–2021. This page is a portable record of the work — self-taught CAD, direct coordination of external engineering contractors, cross-stack ownership from concept through fulfillment.</p>
<p>For the role types I build for now — forward deployed engineer, partner solutions engineer, AI deployment — this is the most compact demonstration I have of the same shape of work: complex technical problem, clear specification, external stakeholders coordinated without overhead, delivered product.</p>
<div class="colophon">
Daniel Kitchen · Stonington, CT · <a href="mailto:iamdanielkitchen@gmail.com">contact</a>
</div>
</div>
</footer>
</body>
</html>