-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1118 lines (1083 loc) · 86.5 KB
/
index.html
File metadata and controls
1118 lines (1083 loc) · 86.5 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
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Brittany Chiang | Senior Fullstack Engineer</title>
<link href="./dist/output.css" rel="stylesheet">
<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=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
</head>
<body
class="bg-slate-900 leading-relaxed text-slate-400 antialiased selection:bg-teal-300 selection:text-teal-900 font-[Inter]">
<!-- Mobile Header -->
<header
class="lg:hidden sticky top-0 z-40 w-full bg-slate-900/75 px-6 py-4 backdrop-blur flex justify-between items-center border-b border-slate-800">
<a href="/" class="text-xl font-bold tracking-tight text-slate-200 truncate pr-4 min-w-0">Brittany Chiang</a>
<button id="mobile-menu-toggle" class="p-2 text-slate-400 hover:text-slate-200 focus:outline-none shrink-0"
aria-label="Toggle menu">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
stroke="currentColor" class="w-8 h-8">
<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5" />
</svg>
</button>
</header>
<!-- Mobile Menu Overlay -->
<div id="mobile-menu-overlay"
class="fixed inset-0 z-50 bg-slate-900/80 backdrop-blur-sm hidden lg:hidden transition-opacity duration-300 opacity-0">
</div>
<div class="mx-auto min-h-screen max-w-7xl px-6 py-12 font-sans md:px-12 md:py-20 lg:px-24 lg:py-0">
<div class="lg:flex lg:justify-start lg:gap-10">
<!-- Header / Left Column (Adaptive Sidebar) -->
<header id="main-header"
class="fixed inset-y-0 left-0 z-60 w-72 -translate-x-full transition-transform duration-300 bg-slate-900 px-8 py-12 lg:sticky lg:top-0 lg:flex lg:max-h-screen lg:w-[35%] lg:flex-col lg:justify-between lg:py-16 lg:translate-x-0 lg:bg-transparent lg:px-0 lg:z-auto shadow-2xl lg:shadow-none lg:overflow-y-auto no-scrollbar">
<!-- Close Button (Mobile Only) -->
<button id="mobile-menu-close"
class="lg:hidden absolute top-4 right-4 p-2 text-slate-400 hover:text-slate-200"
aria-label="Close menu">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
stroke="currentColor" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
<div>
<h1 class="text-2xl font-bold tracking-tight text-slate-200 sm:text-4xl">
<a href="/">Brittany Chiang</a>
</h1>
<h2 class="mt-3 text-lg font-medium tracking-tight text-teal-300 sm:text-xl">
Senior Fullstack Engineer
</h2>
<!-- Navigation (Desktop & Mobile Sidebar) -->
<nav class="nav mt-8" aria-label="In-page jump links">
<ul class="w-max">
<li>
<a class="group flex items-center py-3" href="#summary">
<span
class="nav-indicator mr-4 h-px w-8 bg-slate-600 transition-all group-hover:w-16 group-hover:bg-slate-200 group-focus-visible:w-16 group-focus-visible:bg-slate-200 motion-reduce:transition-none"></span>
<span
class="nav-text text-sm md:text-xs font-bold uppercase tracking-widest text-slate-500 group-hover:text-slate-200 group-focus-visible:text-slate-200">Summary</span>
</a>
</li>
<li>
<a class="group flex items-center py-3" href="#introduction">
<span
class="nav-indicator mr-4 h-px w-8 bg-slate-600 transition-all group-hover:w-16 group-hover:bg-slate-200 group-focus-visible:w-16 group-focus-visible:bg-slate-200 motion-reduce:transition-none"></span>
<span
class="nav-text text-sm md:text-xs font-bold uppercase tracking-widest text-slate-500 group-hover:text-slate-200 group-focus-visible:text-slate-200">Introduction</span>
</a>
</li>
<li>
<a class="group flex items-center py-3" href="#experience">
<span
class="nav-indicator mr-4 h-px w-8 bg-slate-600 transition-all group-hover:w-16 group-hover:bg-slate-200 group-focus-visible:w-16 group-focus-visible:bg-slate-200 motion-reduce:transition-none"></span>
<span
class="nav-text text-sm md:text-xs font-bold uppercase tracking-widest text-slate-500 group-hover:text-slate-200 group-focus-visible:text-slate-200">Experience</span>
</a>
</li>
<li>
<a class="group flex items-center py-3" href="#education">
<span
class="nav-indicator mr-4 h-px w-8 bg-slate-600 transition-all group-hover:w-16 group-hover:bg-slate-200 group-focus-visible:w-16 group-focus-visible:bg-slate-200 motion-reduce:transition-none"></span>
<span
class="nav-text text-sm md:text-xs font-bold uppercase tracking-widest text-slate-500 group-hover:text-slate-200 group-focus-visible:text-slate-200">Education</span>
</a>
</li>
<li>
<a class="group flex items-center py-3" href="#skills">
<span
class="nav-indicator mr-4 h-px w-8 bg-slate-600 transition-all group-hover:w-16 group-hover:bg-slate-200 group-focus-visible:w-16 group-focus-visible:bg-slate-200 motion-reduce:transition-none"></span>
<span
class="nav-text text-sm md:text-xs font-bold uppercase tracking-widest text-slate-500 group-hover:text-slate-200 group-focus-visible:text-slate-200">Skills</span>
</a>
</li>
<li>
<a class="group flex items-center py-3" href="#projects">
<span
class="nav-indicator mr-4 h-px w-8 bg-slate-600 transition-all group-hover:w-16 group-hover:bg-slate-200 group-focus-visible:w-16 group-focus-visible:bg-slate-200 motion-reduce:transition-none"></span>
<span
class="nav-text text-sm md:text-xs font-bold uppercase tracking-widest text-slate-500 group-hover:text-slate-200 group-focus-visible:text-slate-200">Projects</span>
</a>
</li>
<li>
<a class="group flex items-center py-3" href="#courses">
<span
class="nav-indicator mr-4 h-px w-8 bg-slate-600 transition-all group-hover:w-16 group-hover:bg-slate-200 group-focus-visible:w-16 group-focus-visible:bg-slate-200 motion-reduce:transition-none"></span>
<span
class="nav-text text-sm md:text-xs font-bold uppercase tracking-widest text-slate-500 group-hover:text-slate-200 group-focus-visible:text-slate-200">Courses</span>
</a>
</li>
<li>
<a class="group flex items-center py-3" href="#certifications">
<span
class="nav-indicator mr-4 h-px w-8 bg-slate-600 transition-all group-hover:w-16 group-hover:bg-slate-200 group-focus-visible:w-16 group-focus-visible:bg-slate-200 motion-reduce:transition-none"></span>
<span
class="nav-text text-sm md:text-xs font-bold uppercase tracking-widest text-slate-500 group-hover:text-slate-200 group-focus-visible:text-slate-200">Certifications</span>
</a>
</li>
<li>
<a class="group flex items-center py-3" href="#languages">
<span
class="nav-indicator mr-4 h-px w-8 bg-slate-600 transition-all group-hover:w-16 group-hover:bg-slate-200 group-focus-visible:w-16 group-focus-visible:bg-slate-200 motion-reduce:transition-none"></span>
<span
class="nav-text text-sm md:text-xs font-bold uppercase tracking-widest text-slate-500 group-hover:text-slate-200 group-focus-visible:text-slate-200">Languages</span>
</a>
</li>
<li>
<a class="group flex items-center py-3" href="#references">
<span
class="nav-indicator mr-4 h-px w-8 bg-slate-600 transition-all group-hover:w-16 group-hover:bg-slate-200 group-focus-visible:w-16 group-focus-visible:bg-slate-200 motion-reduce:transition-none"></span>
<span
class="nav-text text-sm md:text-xs font-bold uppercase tracking-widest text-slate-500 group-hover:text-slate-200 group-focus-visible:text-slate-200">References</span>
</a>
</li>
<li>
<a class="group flex items-center py-3" href="#organizations">
<span
class="nav-indicator mr-4 h-px w-8 bg-slate-600 transition-all group-hover:w-16 group-hover:bg-slate-200 group-focus-visible:w-16 group-focus-visible:bg-slate-200 motion-reduce:transition-none"></span>
<span
class="nav-text text-sm md:text-xs font-bold uppercase tracking-widest text-slate-500 group-hover:text-slate-200 group-focus-visible:text-slate-200">Organizations</span>
</a>
</li>
<li>
<a class="group flex items-center py-3" href="#hobbies">
<span
class="nav-indicator mr-4 h-px w-8 bg-slate-600 transition-all group-hover:w-16 group-hover:bg-slate-200 group-focus-visible:w-16 group-focus-visible:bg-slate-200 motion-reduce:transition-none"></span>
<span
class="nav-text text-sm md:text-xs font-bold uppercase tracking-widest text-slate-500 group-hover:text-slate-200 group-focus-visible:text-slate-200">Hobbies</span>
</a>
</li>
<li>
<a class="group flex items-center py-3" href="#additional">
<span
class="nav-indicator mr-4 h-px w-8 bg-slate-600 transition-all group-hover:w-16 group-hover:bg-slate-200 group-focus-visible:w-16 group-focus-visible:bg-slate-200 motion-reduce:transition-none"></span>
<span
class="nav-text text-sm md:text-xs font-bold uppercase tracking-widest text-slate-500 group-hover:text-slate-200 group-focus-visible:text-slate-200">Additional</span>
</a>
</li>
</ul>
</nav>
</div>
<!-- Social Icons -->
<ul class="ml-1 mt-8 flex items-center" aria-label="Social media">
<li class="mr-5 text-sm">
<a class="block hover:text-slate-200" href="https://github.com/bchiang7" target="_blank"
rel="noreferrer noopener" aria-label="GitHub (opens in a new tab)">
<span class="sr-only">GitHub</span>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor"
class="h-6 w-6" aria-hidden="true">
<path
d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z">
</path>
</svg>
</a>
</li>
<li class="mr-5 text-sm">
<a class="block hover:text-slate-200" href="https://instagram.com/bchiang7" target="_blank"
rel="noreferrer noopener" aria-label="Instagram (opens in a new tab)">
<span class="sr-only">Instagram</span>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" fill="currentColor"
class="h-6 w-6" aria-hidden="true">
<path
d="M295.42,6c-53.2,2.51-89.53,11-121.29,23.48-32.87,12.81-60.73,30-88.45,57.82S40.89,143,28.17,175.92c-12.31,31.83-20.65,68.19-23,121.42S2.3,367.68,2.56,503.46,5.15,635.35,7.62,688.41c2.51,53.2,11,89.53,23.48,121.29,12.81,32.87,30,60.73,57.82,88.45S143,964.09,175.92,976.81c31.83,12.31,68.19,20.65,121.42,23s70.35,2.87,206.13,2.61,131.9-2.59,185-5.06,89.53-11,121.29-23.48c32.87-12.81,60.73-30,88.45-57.82S964.09,862,976.81,829.06c12.31-31.83,20.65-68.19,23-121.42s2.87-70.35,2.61-206.13-2.59-131.9-5.06-185-11-89.53-23.48-121.29c-12.81-32.87-30-60.73-57.82-88.45S862,40.89,829.06,28.17c-31.83-12.31-68.19-20.65-121.42-23S637.32,2.3,501.54,2.56,369.65,5.15,316.59,7.62Zm191.2,168c130.34,0,145.79.5,197.25,2.84,47.58,2.17,73.46,10.12,90.67,16.8,22.79,8.85,39,19.46,56.09,36.51s27.66,33.3,36.51,56.09c6.68,17.21,14.63,43.09,16.8,90.67,2.34,51.46,2.84,66.91,2.84,197.25s-.5,145.79-2.84,197.25c-2.17,47.58-10.12,73.46-16.8,90.67-8.85,22.79-19.46,39-36.51,56.09s-33.3,27.66-56.09,36.51c-17.21,6.68-43.09,14.63-90.67,16.8-51.46,2.34-66.91,2.84-197.25,2.84s-145.79-.5-197.25-2.84c-47.58-2.17-73.46-10.12-90.67-16.8-22.79-8.85-39-19.46-56.09-36.51s-27.66-33.3-36.51-56.09c-6.68-17.21-14.63-43.09-16.8-90.67-2.34-51.46-2.84-66.91-2.84-197.25s.5-145.79,2.84-197.25c2.17-47.58,10.12-73.46,16.8-90.67,8.85-22.79,19.46-39,36.51-56.09s33.3-27.66,56.09-36.51c17.21-6.68,43.09-14.63,90.67-16.8,51.46-2.34,66.91-2.84,197.25-2.84Zm-32.33,149.33A181.88,181.88,0,1,0,636.17,505.21,181.88,181.88,0,0,0,454.29,323.33Zm2,273.71A91.83,91.83,0,1,1,548.16,505.21,91.83,91.83,0,0,1,456.33,597.04Zm285-316.63a60,60,0,1,1-60-60A60,60,0,0,1,741.33,280.41Z" />
</svg>
</a>
</li>
<li class="mr-5 text-sm">
<a class="block hover:text-slate-200" href="https://twitter.com/bchiang7" target="_blank"
rel="noreferrer noopener" aria-label="Twitter (opens in a new tab)">
<span class="sr-only">Twitter</span>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 248 204" fill="currentColor"
class="h-6 w-6" aria-hidden="true">
<path id="white_background"
d="M221.95,51.29c0.15,2.17,0.15,4.34,0.15,6.53c0,66.73-50.8,143.69-143.69,143.69v-0.04c-27.44,0-54.34-7.82-77.41-22.64c3.99,0.48,8,0.72,12.02,0.73c22.74,0.02,44.83-7.61,62.72-21.66c-21.61-0.41-40.56-14.5-47.18-35.07c7.57,1.46,15.37,1.16,22.8-0.87C27.8,117.2,10.85,96.5,10.85,72.46c0-0.22,0-0.43,0-0.64c7.02,3.91,14.88,6.08,22.92,6.32C11.58,63.31,4.74,33.79,18.14,10.71c25.64,31.55,63.47,50.73,104.08,52.76c-4.07-17.54,1.49-35.92,14.61-48.25c20.34-19.12,52.33-18.14,71.45,2.19c11.31-2.23,22.15-6.38,32.07-12.26c-3.77,11.69-11.66,21.62-22.2,27.93c10.01-1.18,19.79-3.86,29-7.95C240.37,35.29,231.81,44.14,221.95,51.29z" />
</svg>
</a>
</li>
<li class="mr-5 text-sm">
<a class="block hover:text-slate-200" href="https://linkedin.com/in/bchiang7" target="_blank"
rel="noreferrer noopener" aria-label="LinkedIn (opens in a new tab)">
<span class="sr-only">LinkedIn</span>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"
class="h-6 w-6" aria-hidden="true">
<path
d="M20.5 2h-17A1.5 1.5 0 002 3.5v17A1.5 1.5 0 003.5 22h17a1.5 1.5 0 001.5-1.5v-17A1.5 1.5 0 0020.5 2zM8 19H5v-9h3zM6.5 8.25A1.75 1.75 0 118.3 6.5a1.78 1.78 0 01-1.8 1.75zM19 19h-3v-4.74c0-1.42-.6-1.93-1.38-1.93A1.74 1.74 0 0013 14.19a.6.6 0 00.11 1.25V19h-3v-9h2.9v1.3a3.11 3.11 0 012.7-1.4c1.55 0 3.36.86 3.36 3.66z">
</path>
</svg>
</a>
</li>
</ul>
</header>
<!-- Main Content / Right Column -->
<main id="content" class="lg:w-[65%] lg:py-24">
<section id="summary" class="mb-8 scroll-mt-16 md:mb-12 lg:mb-16 lg:scroll-mt-24" aria-label="Summary">
<div class="mb-10 flex items-center gap-4 relative">
<h2 class="text-xl font-bold uppercase tracking-widest text-slate-100 shrink-0">Summary</h2>
<div class="h-0.5 bg-slate-500/50 grow rounded"></div>
</div>
<div>
<p class="mb-4">Highly motivated Senior Fullstack Engineer with over 8 years of experience in
building scalable web applications and microservices. Expert in the Laravel and Vue.js
ecosystem with a strong focus on system performance, clean architecture, and team
mentorship.</p>
</div>
</section>
<section id="introduction" class="mb-8 scroll-mt-16 md:mb-12 lg:mb-16 lg:scroll-mt-24"
aria-label="Introduction">
<div class="mb-10 flex items-center gap-4 relative">
<h2 class="text-xl font-bold uppercase tracking-widest text-slate-100 shrink-0">Introduction
</h2>
<div class="h-0.5 bg-slate-500/50 grow rounded"></div>
</div>
<div class="space-y-4">
<!-- Main Preview -->
<div
class="relative group overflow-hidden rounded-xl border-2 border-slate-700 shadow-2xl bg-slate-800">
<img id="intro-main-img"
src="https://images.unsplash.com/photo-1498050108023-c5249f4df085?q=80&w=1200&auto=format&fit=crop"
alt="Main Intro"
class="w-full aspect-video object-cover transition-transform duration-500 group-hover:scale-105" />
<div
class="absolute bottom-0 left-0 right-0 p-4 bg-linear-to-t from-slate-900/90 to-transparent">
<p id="intro-main-title" class="text-slate-200 font-semibold text-lg">My Development
Workspace</p>
</div>
</div>
<!-- Thumbnails -->
<div class="flex gap-4 overflow-x-auto pb-4 no-scrollbar snap-x">
<button class="intro-thumb shrink-0 snap-start outline-none"
data-src="https://images.unsplash.com/photo-1498050108023-c5249f4df085?q=80&w=1200&auto=format&fit=crop"
data-title="My Development Workspace">
<div
class="w-32 aspect-video rounded-lg border-2 border-teal-400 shadow-lg overflow-hidden transition-all duration-300">
<img src="https://images.unsplash.com/photo-1498050108023-c5249f4df085?q=80&w=300&auto=format&fit=crop"
class="w-full h-full object-cover" />
</div>
</button>
<button class="intro-thumb shrink-0 snap-start outline-none"
data-src="https://images.unsplash.com/photo-1555066931-4365d14bab8c?q=80&w=1200&auto=format&fit=crop"
data-title="Clean Code Philosophy">
<div
class="w-32 aspect-video rounded-lg border-2 border-slate-700 overflow-hidden transition-all duration-300">
<img src="https://images.unsplash.com/photo-1555066931-4365d14bab8c?q=80&w=300&auto=format&fit=crop"
class="w-full h-full object-cover opacity-60" />
</div>
</button>
<button class="intro-thumb shrink-0 snap-start outline-none"
data-src="https://images.unsplash.com/photo-1517694712202-14dd9538aa97?q=80&w=1200&auto=format&fit=crop"
data-title="Building Scalable Apps">
<div
class="w-32 aspect-video rounded-lg border-2 border-slate-700 overflow-hidden transition-all duration-300">
<img src="https://images.unsplash.com/photo-1517694712202-14dd9538aa97?q=80&w=300&auto=format&fit=crop"
class="w-full h-full object-cover opacity-60" />
</div>
</button>
<button class="intro-thumb shrink-0 snap-start outline-none"
data-src="https://images.unsplash.com/photo-1587620962725-abab7fe55159?q=80&w=1200&auto=format&fit=crop"
data-title="The Future of Web Tech">
<div
class="w-32 aspect-video rounded-lg border-2 border-slate-700 overflow-hidden transition-all duration-300">
<img src="https://images.unsplash.com/photo-1587620962725-abab7fe55159?q=80&w=300&auto=format&fit=crop"
class="w-full h-full object-cover opacity-60" />
</div>
</button>
</div>
</div>
</section>
<section id="experience" class="mb-8 scroll-mt-16 md:mb-12 lg:mb-16 lg:scroll-mt-24"
aria-label="Work experience">
<!-- Experience content placeholder -->
<div class="mb-10 flex items-center gap-4 relative">
<h2 class="text-xl font-bold uppercase tracking-widest text-slate-100 shrink-0">Experience</h2>
<div class="h-0.5 bg-slate-500/50 grow rounded"></div>
</div>
<ol class="group/list">
<li class="mb-8">
<div
class="group relative grid pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:opacity-100! lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<header
class="z-10 mb-2 mt-1 text-sm md:text-xs font-semibold uppercase tracking-wide text-slate-500 sm:col-span-2"
aria-label="2018 to 2024">2018 — 2024</header>
<div class="z-10 sm:col-span-6">
<h3 class="font-medium leading-snug text-slate-200">
<div class="text-base font-semibold">
Lead Engineer <span class="text-slate-200">· Upstatement</span>
</div>
<div class="text-slate-500 text-sm font-medium mt-2">Full-time · Boston, MA
</div>
</h3>
<p class="mt-4 text-sm leading-normal">
Build, style, and ship high-quality websites, design systems, mobile apps, and
digital experiences for a diverse array of projects for clients including
Harvard Business School, Everytown for Gun Safety, Pratt Institute, Koala
Health, Vanderbilt University, The 19th News, and more. Provide leadership
within engineering department through close collaboration, knowledge shares, and
spearheading the development of internal tools.
</p>
</div>
</div>
</li>
<li class="mb-8">
<div
class="group relative grid pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:opacity-100! lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<header
class="z-10 mb-2 mt-1 text-sm md:text-xs font-semibold uppercase tracking-wide text-slate-500 sm:col-span-2"
aria-label="July to December 2017">July — Dec 2017</header>
<div class="z-10 sm:col-span-6">
<h3 class="font-medium leading-snug text-slate-200">
<div class="text-base font-semibold">
UI Engineer Co-op <span class="text-slate-200">· Apple</span>
</div>
<div class="text-slate-500 text-sm font-medium mt-2">Internship · Cupertino, CA
</div>
</h3>
<p class="mt-4 text-sm leading-normal">
Developed and styled interactive web apps for Apple Music, including the user
interface of Apple Music's embeddable web player widget for in-browser user
authorization and full song playback.
</p>
</div>
</div>
</li>
<li class="mb-8">
<div
class="group relative grid pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:opacity-100! lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<header
class="z-10 mb-2 mt-1 text-sm md:text-xs font-semibold uppercase tracking-wide text-slate-500 sm:col-span-2"
aria-label="2016 to 2017">2016 — 2017</header>
<div class="z-10 sm:col-span-6">
<h3 class="font-medium leading-snug text-slate-200">
<div class="text-base font-semibold">
Developer <span class="text-slate-200">· Scout Studio</span>
</div>
<div class="text-slate-500 text-sm font-medium mt-2">Part-time · Boston, MA
</div>
</h3>
<p class="mt-4 text-sm leading-normal">
Collaborated with other student designers and engineers on pro-bono projects to
create new brands, design systems, and websites for organizations in the
community.
</p>
</div>
</div>
</li>
<li class="mb-8">
<div
class="group relative grid pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:opacity-100! lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<header
class="z-10 mb-2 mt-1 text-sm md:text-xs font-semibold uppercase tracking-wide text-slate-500 sm:col-span-2"
aria-label="July to December 2016">July — Dec 2016</header>
<div class="z-10 sm:col-span-6">
<h3 class="font-medium leading-snug text-slate-200">
<div class="text-base font-semibold">
Software Engineer Co-op <span class="text-slate-200">· Starry</span>
</div>
<div class="text-slate-500 text-sm font-medium mt-2">Internship · Boston, MA
</div>
</h3>
<p class="mt-4 text-sm leading-normal">
Worked with the UI team to engineer and improve major features of Starry's
customer-facing Android app.
</p>
</div>
</div>
</li>
<li class="mb-8">
<div
class="group relative grid pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:opacity-100! lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<header
class="z-10 mb-2 mt-1 text-sm md:text-xs font-semibold uppercase tracking-wide text-slate-500 sm:col-span-2"
aria-label="July to December 2015">July — Dec 2015</header>
<div class="z-10 sm:col-span-6">
<h3 class="font-medium leading-snug text-slate-200">
<div class="text-base font-semibold">
Creative Technologist Co-op <span class="text-slate-200">· MullenLowe
U.S.</span>
</div>
<div class="text-slate-500 text-sm font-medium mt-2">Internship · Boston, MA
</div>
</h3>
<p class="mt-4 text-sm leading-normal">
Developed, maintained, and shipped production code for client websites. Clients
included JetBlue, Lovesac, U.S. Cellular, U.S. Department of Defense, and more.
</p>
</div>
</div>
</li>
</ol>
<div class="mt-12">
<a class="inline-flex items-center font-semibold leading-tight text-slate-200 group"
aria-label="View Full Résumé" href="/resume.pdf">
<span>View Full Résumé</span>
<span class="whitespace-nowrap">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"
class="ml-1 inline-block h-4 w-4 shrink-0 -translate-y-px transition-transform group-hover:translate-x-2 group-focus-visible:translate-x-2 motion-reduce:transition-none"
aria-hidden="true">
<path fill-rule="evenodd"
d="M3 10a.75.75 0 01.75-.75h10.638L10.23 5.29a.75.75 0 111.04-1.08l5.5 5.25a.75.75 0 010 1.08l-5.5 5.25a.75.75 0 11-1.04-1.08l4.158-3.96H3.75A.75.75 0 013 10z"
clip-rule="evenodd"></path>
</svg>
</span>
</a>
</div>
</section>
<section id="education" class="mb-8 scroll-mt-16 md:mb-12 lg:mb-16 lg:scroll-mt-24"
aria-label="Education">
<div class="mb-10 flex items-center gap-4 relative">
<h2 class="text-xl font-bold uppercase tracking-widest text-slate-100 shrink-0">Education</h2>
<div class="h-0.5 bg-slate-500/50 grow rounded"></div>
</div>
<ol class="group/list">
<li class="mb-8">
<div
class="group relative grid pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:opacity-100! lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<header
class="z-10 mb-2 mt-1 text-sm md:text-xs font-semibold uppercase tracking-wide text-slate-500 sm:col-span-2"
aria-label="2021 — 2023">2021 — 2023</header>
<div class="z-10 sm:col-span-6">
<h3 class="font-medium leading-snug text-slate-200">
<div>
<div
class="inline-flex items-baseline font-semibold leading-tight text-slate-200 text-base">
<span>Institut Teknologi Bandung (ITB) <span class="inline-block"> ·
Master of Computer Science</span></span>
</div>
<div class="text-teal-300 text-sm font-medium mt-1">Bandung, Indonesia</div>
</div>
</h3>
<p class="mt-4 text-sm leading-normal">Thesis: 'Optimizing High-Concurrency Database
Transactions in Distributed Systems'. Graduated Cum Laude.</p>
</div>
</div>
</li>
<li class="mb-8">
<div
class="group relative grid pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:opacity-100! lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<header
class="z-10 mb-2 mt-1 text-sm md:text-xs font-semibold uppercase tracking-wide text-slate-500 sm:col-span-2"
aria-label="2016 — 2020">2016 — 2020</header>
<div class="z-10 sm:col-span-6">
<h3 class="font-medium leading-snug text-slate-200">
<div>
<div
class="inline-flex items-baseline font-semibold leading-tight text-slate-200 text-base">
<span>Widyatama University <span class="inline-block"> · Bachelor's
Degree in Informatics</span></span>
</div>
<div class="text-teal-300 text-sm font-medium mt-1">Bandung, Indonesia</div>
</div>
</h3>
<p class="mt-4 text-sm leading-normal"></p>
</div>
</div>
</li>
</ol>
</section>
<section id="skills" class="mb-8 scroll-mt-16 md:mb-12 lg:mb-16 lg:scroll-mt-24" aria-label="Skills">
<div class="mb-10 flex items-center gap-4 relative">
<h2 class="text-xl font-bold uppercase tracking-widest text-slate-100 shrink-0">Skills</h2>
<div class="h-0.5 bg-slate-500/50 grow rounded"></div>
</div>
<ul class="flex flex-wrap gap-2">
<li
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-sm md:text-xs font-medium leading-5 text-teal-300">
PHP & Laravel (Expert)</li>
<li
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-sm md:text-xs font-medium leading-5 text-teal-300">
JavaScript / TypeScript (Advanced)</li>
<li
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-sm md:text-xs font-medium leading-5 text-teal-300">
Vue.js & Nuxt (Advanced)</li>
<li
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-sm md:text-xs font-medium leading-5 text-teal-300">
MySQL & PostgreSQL (Advanced)</li>
</ul>
</section>
<section id="projects" class="mb-8 scroll-mt-16 md:mb-12 lg:mb-16 lg:scroll-mt-24"
aria-label="Selected projects">
<div class="mb-10 flex items-center gap-4 relative">
<h2 class="text-xl font-bold uppercase tracking-widest text-slate-100 shrink-0">Projects</h2>
<div class="h-0.5 bg-slate-500/50 grow rounded"></div>
</div>
<ul class="group/list">
<li class="mb-8">
<div
class="group relative grid gap-4 pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:opacity-100! lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<div class="z-10 sm:order-2 sm:col-span-6">
<h3>
<a class="inline-flex items-baseline font-semibold leading-tight text-slate-200 hover:text-teal-300 focus-visible:text-teal-300 group/link text-lg md:text-base"
href="https://example.com" target="_blank" rel="noreferrer noopener">
<span
class="absolute -inset-x-4 -inset-y-2.5 hidden rounded-xl md:-inset-x-6 md:-inset-y-4 lg:block"></span>
<span>Build a Spotify Connected App<svg
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"
fill="currentColor"
class="inline-block h-4 w-4 shrink-0 transition-transform group-hover/link:-translate-y-1 group-hover/link:translate-x-1 group-focus-visible/link:-translate-y-1 group-focus-visible/link:translate-x-1 motion-reduce:transition-none ml-1 translate-y-px"
aria-hidden="true">
<path fill-rule="evenodd"
d="M5.22 14.78a.75.75 0 001.06 0l7.22-7.22v5.69a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75h-7.5a.75.75 0 000 1.5h5.69l-7.22 7.22a.75.75 0 000 1.06z"
clip-rule="evenodd"></path>
</svg></span>
</a>
</h3>
<div class="text-teal-300 text-sm md:text-xs font-semibold mt-1">Lead Instructor & Developer</div>
<p class="mt-4 text-sm leading-normal">
Video course that teaches how to build a web app with the Spotify Web API.
Topics covered include the principles of REST APIs, user auth flows, Node,
Express, React, Styled Components, and more.
</p>
<ul class="mt-2 flex flex-wrap" aria-label="Technologies used">
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-sm md:text-xs font-medium leading-5 text-teal-300">
Video Course</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-sm md:text-xs font-medium leading-5 text-teal-300">
Node</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-sm md:text-xs font-medium leading-5 text-teal-300">
Express</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-sm md:text-xs font-medium leading-5 text-teal-300">
React</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-sm md:text-xs font-medium leading-5 text-teal-300">
Styled Components</div>
</li>
</ul>
</div>
<div class="z-10 sm:order-1 sm:col-span-2">
<div
class="rounded-xl border-2 border-slate-200/10 transition group-hover:border-slate-200/30 sm:order-1 sm:col-span-2 sm:translate-y-1">
<!-- Placeholder Image -->
<img src="https://images.unsplash.com/photo-1517694712202-14dd9538aa97?q=80&w=500&auto=format&fit=crop"
alt="Project"
class="aspect-video w-full object-cover rounded-xl border border-slate-700 shadow-sm" />
</div>
</div>
</div>
</li>
<li class="mb-8">
<div
class="group relative grid gap-4 pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:opacity-100! lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<div class="z-10 sm:order-2 sm:col-span-6">
<h3>
<a class="inline-flex items-baseline font-semibold leading-tight text-slate-200 hover:text-teal-300 focus-visible:text-teal-300 group/link text-lg md:text-base"
href="https://example.com" target="_blank" rel="noreferrer noopener">
<span
class="absolute -inset-x-4 -inset-y-2.5 hidden rounded-xl md:-inset-x-6 md:-inset-y-4 lg:block"></span>
<span>Spotify Profile<svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20" fill="currentColor"
class="inline-block h-4 w-4 shrink-0 transition-transform group-hover/link:-translate-y-1 group-hover/link:translate-x-1 group-focus-visible/link:-translate-y-1 group-focus-visible/link:translate-x-1 motion-reduce:transition-none ml-1 translate-y-px"
aria-hidden="true">
<path fill-rule="evenodd"
d="M5.22 14.78a.75.75 0 001.06 0l7.22-7.22v5.69a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75h-7.5a.75.75 0 000 1.5h5.69l-7.22 7.22a.75.75 0 000 1.06z"
clip-rule="evenodd"></path>
</svg></span>
</a>
<div class="text-teal-300 text-sm md:text-xs font-semibold mt-1">Fullstack Developer</div>
</h3>
<p class="mt-4 text-sm leading-normal">
Web app for visualizing personalized Spotify data. View your top artists, top
tracks, recently played tracks, and detailed audio information about each track.
Create and save new playlists of recommended tracks based on your existing
playlists and more.
</p>
<ul class="mt-2 flex flex-wrap" aria-label="Technologies used">
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-sm md:text-xs font-medium leading-5 text-teal-300">
React</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-sm md:text-xs font-medium leading-5 text-teal-300">
Express</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-sm md:text-xs font-medium leading-5 text-teal-300">
Spotify API</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-sm md:text-xs font-medium leading-5 text-teal-300">
Heroku</div>
</li>
</ul>
</div>
<div class="z-10 sm:order-1 sm:col-span-2">
<div
class="rounded-xl border-2 border-slate-200/10 transition group-hover:border-slate-200/30 sm:order-1 sm:col-span-2 sm:translate-y-1">
<!-- Placeholder Image -->
<img src="https://images.unsplash.com/photo-1517694712202-14dd9538aa97?q=80&w=500&auto=format&fit=crop"
alt="Project"
class="aspect-video w-full object-cover rounded-xl border border-slate-700 shadow-sm" />
</div>
</div>
</div>
</li>
<li class="mb-8">
<div
class="group relative grid gap-4 pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:opacity-100! lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<div class="z-10 sm:order-2 sm:col-span-6">
<h3>
<a class="inline-flex items-baseline font-semibold leading-tight text-slate-200 hover:text-teal-300 focus-visible:text-teal-300 group/link text-lg md:text-base"
href="https://example.com" target="_blank" rel="noreferrer noopener">
<span
class="absolute -inset-x-4 -inset-y-2.5 hidden rounded-xl md:-inset-x-6 md:-inset-y-4 lg:block"></span>
<span>Halcyon Theme<svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20" fill="currentColor"
class="inline-block h-4 w-4 shrink-0 transition-transform group-hover/link:-translate-y-1 group-hover/link:translate-x-1 group-focus-visible/link:-translate-y-1 group-focus-visible/link:translate-x-1 motion-reduce:transition-none ml-1 translate-y-px"
aria-hidden="true">
<path fill-rule="evenodd"
d="M5.22 14.78a.75.75 0 001.06 0l7.22-7.22v5.69a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75h-7.5a.75.75 0 000 1.5h5.69l-7.22 7.22a.75.75 0 000 1.06z"
clip-rule="evenodd"></path>
</svg></span>
</a>
</h3>
<div class="text-teal-300 text-sm md:text-xs font-semibold mt-1">UI/UX Designer & Theme Developer</div>
<p class="mt-4 text-sm leading-normal">
Minimal dark blue theme for VS Code, Sublime Text, Atom, iTerm, and more.
</p>
</div>
<div class="z-10 sm:order-1 sm:col-span-2">
<div
class="rounded-xl border-2 border-slate-200/10 transition group-hover:border-slate-200/30 sm:order-1 sm:col-span-2 sm:translate-y-1">
<!-- Placeholder Image -->
<img src="https://images.unsplash.com/photo-1517694712202-14dd9538aa97?q=80&w=500&auto=format&fit=crop"
alt="Project"
class="aspect-video w-full object-cover rounded-xl border border-slate-700 shadow-sm" />
</div>
</div>
</div>
</li>
<li class="mb-8">
<div
class="group relative grid gap-4 pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:opacity-100! lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<div class="z-10 sm:order-2 sm:col-span-6">
<h3>
<a class="inline-flex items-baseline font-semibold leading-tight text-slate-200 hover:text-teal-300 focus-visible:text-teal-300 group/link text-lg md:text-base"
href="https://example.com" target="_blank" rel="noreferrer noopener">
<span
class="absolute -inset-x-4 -inset-y-2.5 hidden rounded-xl md:-inset-x-6 md:-inset-y-4 lg:block"></span>
<span>brittanychiang.com (v4)<svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20" fill="currentColor"
class="inline-block h-4 w-4 shrink-0 transition-transform group-hover/link:-translate-y-1 group-hover/link:translate-x-1 group-focus-visible/link:-translate-y-1 group-focus-visible/link:translate-x-1 motion-reduce:transition-none ml-1 translate-y-px"
aria-hidden="true">
<path fill-rule="evenodd"
d="M5.22 14.78a.75.75 0 001.06 0l7.22-7.22v5.69a.75.75 0 001.5 0v-7.5a.75.75 0 00-.75-.75h-7.5a.75.75 0 000 1.5h5.69l-7.22 7.22a.75.75 0 000 1.06z"
clip-rule="evenodd"></path>
</svg></span>
</a>
</h3>
<div class="text-teal-300 text-sm md:text-xs font-semibold mt-1">Frontend Developer</div>
<p class="mt-4 text-sm leading-normal">
An old portfolio site built with Gatsby with 6k+ stars and 3k+ forks
</p>
<ul class="mt-2 flex flex-wrap" aria-label="Technologies used">
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-sm md:text-xs font-medium leading-5 text-teal-300">
Gatsby</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-sm md:text-xs font-medium leading-5 text-teal-300">
Styled Components</div>
</li>
<li class="mr-1.5 mt-2">
<div
class="flex items-center rounded-full bg-teal-400/10 px-3 py-1 text-sm md:text-xs font-medium leading-5 text-teal-300">
Netlify</div>
</li>
</ul>
</div>
<div class="z-10 sm:order-1 sm:col-span-2">
<div
class="rounded-xl border-2 border-slate-200/10 transition group-hover:border-slate-200/30 sm:order-1 sm:col-span-2 sm:translate-y-1">
<!-- Placeholder Image -->
<img src="https://images.unsplash.com/photo-1517694712202-14dd9538aa97?q=80&w=500&auto=format&fit=crop"
alt="Project"
class="aspect-video w-full object-cover rounded-xl border border-slate-700 shadow-sm" />
</div>
</div>
</div>
</li>
</ul>
</section>
<section id="courses" class="mb-8 scroll-mt-16 md:mb-12 lg:mb-16 lg:scroll-mt-24" aria-label="Courses">
<div class="mb-10 flex items-center gap-4 relative">
<h2 class="text-xl font-bold uppercase tracking-widest text-slate-100 shrink-0">Courses</h2>
<div class="h-0.5 bg-slate-500/50 grow rounded"></div>
</div>
<ol class="group/list">
<li class="mb-8">
<div
class="group relative grid pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:opacity-100! lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<header
class="z-10 mb-2 mt-1 text-sm md:text-xs font-semibold uppercase tracking-wide text-slate-500 sm:col-span-2"
aria-label="Feb 2023 — Mar 2023">Feb 2023 — Mar 2023</header>
<div class="z-10 sm:col-span-6">
<h3 class="font-medium leading-snug text-slate-200">
<div>
<div class="text-base font-semibold text-slate-200">Clean Code Architecture
</div>
<div class="text-teal-300 text-sm font-medium mt-1">Uncle Bob</div>
</div>
</h3>
<p class="mt-4 text-sm leading-normal"></p>
</div>
</div>
</li>
<li class="mb-8">
<div
class="group relative grid pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:opacity-100! lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<header
class="z-10 mb-2 mt-1 text-sm md:text-xs font-semibold uppercase tracking-wide text-slate-500 sm:col-span-2"
aria-label="Jan 2022 — Feb 2022">Jan 2022 — Feb 2022</header>
<div class="z-10 sm:col-span-6">
<h3 class="font-medium leading-snug text-slate-200">
<div>
<div class="text-base font-semibold text-slate-200">Advanced Vue Design
Patterns</div>
<div class="text-teal-300 text-sm font-medium mt-1">Vue Mastery</div>
</div>
</h3>
<p class="mt-4 text-sm leading-normal"></p>
</div>
</div>
</li>
</ol>
</section>
<section id="certifications" class="mb-8 scroll-mt-16 md:mb-12 lg:mb-16 lg:scroll-mt-24"
aria-label="Certifications">
<div class="mb-10 flex items-center gap-4 relative">
<h2 class="text-xl font-bold uppercase tracking-widest text-slate-100 shrink-0">Certifications
</h2>
<div class="h-0.5 bg-slate-500/50 grow rounded"></div>
</div>
<ol class="group/list">
<li class="mb-8">
<div
class="group relative grid pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:opacity-100! lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<header
class="z-10 mb-2 mt-1 text-sm md:text-xs font-semibold uppercase tracking-wide text-slate-500 sm:col-span-2"
aria-label="2024">2024</header>
<div class="z-10 sm:col-span-6">
<h3 class="font-medium leading-snug text-slate-200">
<div>
<div class="text-base font-semibold text-slate-200">AWS Certified Solutions
Architect</div>
<div class="text-teal-300 text-sm font-medium mt-1">Amazon Web Services
</div>
</div>
</h3>
<p class="mt-4 text-sm leading-normal"></p>
</div>
</div>
</li>
<li class="mb-8">
<div
class="group relative grid pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:opacity-100! lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<header
class="z-10 mb-2 mt-1 text-sm md:text-xs font-semibold uppercase tracking-wide text-slate-500 sm:col-span-2"
aria-label="2022">2022</header>
<div class="z-10 sm:col-span-6">
<h3 class="font-medium leading-snug text-slate-200">
<div>
<div class="text-base font-semibold text-slate-200">Laravel Certified
Developer</div>
<div class="text-teal-300 text-sm font-medium mt-1">Laravel</div>
</div>
</h3>
<p class="mt-4 text-sm leading-normal"></p>
</div>
</div>
</li>
</ol>
</section>
<section id="languages" class="mb-8 scroll-mt-16 md:mb-12 lg:mb-16 lg:scroll-mt-24"
aria-label="Languages">
<div class="mb-10 flex items-center gap-4 relative">
<h2 class="text-xl font-bold uppercase tracking-widest text-slate-100 shrink-0">Languages</h2>
<div class="h-0.5 bg-slate-500/50 grow rounded"></div>
</div>
<ul class="grid grid-cols-1 sm:grid-cols-2 gap-4">
<li
class="group relative flex items-center gap-4 rounded-md transition-all lg:hover:opacity-100! lg:group-hover/list:opacity-50">
<div class="text-slate-200 font-medium">Bahasa Indonesia</div>
<div class="text-slate-500 text-sm">Native</div>
</li>
<li
class="group relative flex items-center gap-4 rounded-md transition-all lg:hover:opacity-100! lg:group-hover/list:opacity-50">
<div class="text-slate-200 font-medium">English</div>
<div class="text-slate-500 text-sm">Fluent</div>
</li>
<li
class="group relative flex items-center gap-4 rounded-md transition-all lg:hover:opacity-100! lg:group-hover/list:opacity-50">
<div class="text-slate-200 font-medium">Sundanese</div>
<div class="text-slate-500 text-sm">Native</div>
</li>
</ul>
</section>
<section id="references" class="mb-8 scroll-mt-16 md:mb-12 lg:mb-16 lg:scroll-mt-24"
aria-label="References">
<div class="mb-10 flex items-center gap-4 relative">
<h2 class="text-xl font-bold uppercase tracking-widest text-slate-100 shrink-0">References</h2>
<div class="h-0.5 bg-slate-500/50 grow rounded"></div>
</div>
<ul class="grid grid-cols-1 gap-8 md:grid-cols-2">
<li
class="group relative rounded-xl transition-all lg:hover:opacity-100! lg:group-hover/list:opacity-50 p-6 border border-slate-800 bg-slate-800/30 hover:bg-slate-800/50 shadow-sm">
<h3 class="font-medium leading-snug text-slate-200 mb-2">Budi Santoso</h3>
<div class="text-slate-500 text-sm mb-2">Unicorn Tech</div>
<div class="text-slate-500 text-sm mb-2">budi.s@unicorn.tech</div>
<div class="text-slate-500 text-sm mb-2">+62 811 9999 888</div>
</li>
<li
class="group relative rounded-xl transition-all lg:hover:opacity-100! lg:group-hover/list:opacity-50 p-6 border border-slate-800 bg-slate-800/30 hover:bg-slate-800/50 shadow-sm">
<h3 class="font-medium leading-snug text-slate-200 mb-2">Sarah Wijaya</h3>
<div class="text-slate-500 text-sm mb-2">PT Sumroch Karya</div>
<div class="text-slate-500 text-sm mb-2">sarah.w@sumroch.com</div>
<div class="text-slate-500 text-sm mb-2">+62 812 5555 444</div>
</li>
</ul>
</section>
<section id="organizations" class="mb-8 scroll-mt-16 md:mb-12 lg:mb-16 lg:scroll-mt-24"
aria-label="Organizations">
<div class="mb-10 flex items-center gap-4 relative">
<h2 class="text-xl font-bold uppercase tracking-widest text-slate-100 shrink-0">Organizations
</h2>
<div class="h-0.5 bg-slate-500/50 grow rounded"></div>
</div>
<ol class="group/list">
<li class="mb-8">
<div
class="group relative grid pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:opacity-100! lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<header
class="z-10 mb-2 mt-1 text-sm md:text-xs font-semibold uppercase tracking-wide text-slate-500 sm:col-span-2"
aria-label="2021 — Present">2021 — Present</header>
<div class="z-10 sm:col-span-6">
<h3 class="font-medium leading-snug text-slate-200">
<div>
<a class="inline-flex items-baseline font-semibold leading-tight text-slate-200 text-base"
href="#" aria-label="Community Lead">
<span
class="absolute -inset-x-4 -inset-y-2.5 hidden rounded md:-inset-x-6 md:-inset-y-4 lg:block"></span>
<span>Community Lead <span class="inline-block"> · Laravel Bandung
Community</span></span>
</a>
</div>
</h3>
<p class="mt-4 text-sm leading-normal">Organizing monthly meetups, workshops, and
managing a
community of 500+ developers.</p>
</div>
</div>
</li>
<li class="mb-8">
<div
class="group relative grid pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:opacity-100! lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<header
class="z-10 mb-2 mt-1 text-sm md:text-xs font-semibold uppercase tracking-wide text-slate-500 sm:col-span-2"
aria-label="2021 — 2022">2021 — 2022</header>
<div class="z-10 sm:col-span-6">
<h3 class="font-medium leading-snug text-slate-200">
<div>
<a class="inline-flex items-baseline font-semibold leading-tight text-slate-200 text-base"
href="#" aria-label="Core Member">
<span
class="absolute -inset-x-4 -inset-y-2.5 hidden rounded md:-inset-x-6 md:-inset-y-4 lg:block"></span>
<span>Core Member <span class="inline-block"> · Google Developer Student
Clubs -
ITB</span></span>
</a>
</div>
</h3>
<p class="mt-4 text-sm leading-normal">Spearheaded the mobile development wing and
organized
multiple Cloud Computing workshops for students.</p>
</div>
</div>
</li>
<li class="mb-8">
<div
class="group relative grid pb-1 transition-all sm:grid-cols-8 sm:gap-8 md:gap-4 lg:hover:opacity-100! lg:group-hover/list:opacity-50">
<div
class="absolute -inset-x-4 -inset-y-4 z-0 hidden rounded-md transition motion-reduce:transition-none lg:-inset-x-6 lg:block lg:group-hover:bg-slate-800/50 lg:group-hover:shadow-[inset_0_1px_0_0_rgba(148,163,184,0.1)] lg:group-hover:drop-shadow-lg">
</div>
<header
class="z-10 mb-2 mt-1 text-sm md:text-xs font-semibold uppercase tracking-wide text-slate-500 sm:col-span-2"
aria-label="2019 — 2021">2019 — 2021</header>
<div class="z-10 sm:col-span-6">
<h3 class="font-medium leading-snug text-slate-200">