-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
backup.html
executable file
·1606 lines (1510 loc) · 73.9 KB
/
backup.html
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="menu-will-open" oncontextmenu="return true">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>UZITRAKE✦PORTFOLIO</title>
<meta name="description" content="Welcome to my portfolio discover my work and skills" />
<meta name="keywords" content="Welcome ,portfolio,uzitrake" />
<meta name="author" content="uzitrake" />
<meta name="theme-color" content="#dbc6f7" />
<meta http-equiv="Cache-Control" content="max-age=31536000" />
<link id="browser_favicon" rel="icon" href="img/svg/logo-uzitrake1.png" />
<link rel="stylesheet" type="text/css" href="css/preloader.css" />
<link fetchpriority="high" rel="preload" href="img/works/12.jpg" as="image" />
<link fetchpriority="high" rel="preload" href="img/works/13.jpg" as="image" />
<link fetchpriority="high" rel="preload" href="img/works/17.jpg" as="image" />
<link fetchpriority="high" rel="preload" href="img/works/22.jpg" as="image" />
<link fetchpriority="high" rel="preload" href="img/works/19.jpg" as="image" />
<link fetchpriority="high" rel="preload" href="img/works/20.jpg" as="image" />
<link fetchpriority="high" rel="preload" href="img/works/16.jpg" as="image" />
<link fetchpriority="high" rel="preload" href="img/works/26.jpg" as="image" />
<link rel="manifest" href="manifest.json" />
<script src="call-worker.js"></script>
</head>
<body class="loading menu-will-open noscroll">
<link rel="stylesheet" type="text/css" href="css/portfolio-hero.css" />
<link rel="stylesheet" type="text/css" href="css/distort.css" />
<div class="preloader">
<div class="overlay__row"></div>
<div class="overlay__row"></div>
<h1 class="title-uzi" data-splitting="">Uzitrake</h1>
<div class="gallery">
<figure data-scroll class="gallery__item">
<div class="gallery__item-img">
<div class="gallery__item-imginner" style="background-image: url(img/works/12.jpg)"></div>
</div>
</figure>
<figure data-scroll data-scroll-speed="2.5" class="gallery__item">
<div class="gallery__item-img">
<div class="gallery__item-imginner" style="background-image: url(img/works/13.jpg)"></div>
</div>
</figure>
<figure data-scroll data-scroll-speed="4" class="gallery__item">
<div class="gallery__item-img">
<div class="gallery__item-imginner" style="background-image: url(img/works/17.jpg)"></div>
</div>
</figure>
<figure data-scroll data-scroll-speed="1" class="gallery__item">
<div class="gallery__item-img">
<div class="gallery__item-imginner" style="background-image: url(img/works/19.jpg)"></div>
</div>
</figure>
<figure data-scroll data-scroll-speed="1" class="gallery__item">
<div class="gallery__item-img">
<div class="gallery__item-imginner" style="background-image: url(img/works/20.jpg)"></div>
</div>
</figure>
<figure data-scroll data-scroll-speed="1" class="gallery__item">
<div class="gallery__item-img">
<div class="gallery__item-imginner" style="background-image: url(img/works/16.jpg)"></div>
</div>
</figure>
<figure data-scroll data-scroll-speed="1" class="gallery__item">
<div class="gallery__item-img">
<div class="gallery__item-imginner" style="background-image: url(img/works/22.jpg)"></div>
</div>
</figure>
<figure data-scroll data-scroll-speed="1" class="gallery__item">
<div class="gallery__item-img">
<div class="gallery__item-imginner" style="background-image: url(img/works/26.jpg)"></div>
</div>
</figure>
</div>
</div>
<svg class="hidden">
<symbol id="icon-arrow" viewBox="0 0 24 24">
<title>arrow</title>
<polygon points="6.3,12.8 20.9,12.8 20.9,11.2 6.3,11.2 10.2,7.2 9,6 3.1,12 9,18 10.2,16.8 "></polygon>
</symbol>
<symbol id="icon-drop" viewBox="0 0 24 24">
<title>drop</title>
<path
d="M12,21c-3.6,0-6.6-3-6.6-6.6C5.4,11,10.8,4,11.4,3.2C11.6,3.1,11.8,3,12,3s0.4,0.1,0.6,0.3c0.6,0.8,6.1,7.8,6.1,11.2C18.6,18.1,15.6,21,12,21zM12,4.8c-1.8,2.4-5.2,7.4-5.2,9.6c0,2.9,2.3,5.2,5.2,5.2s5.2-2.3,5.2-5.2C17.2,12.2,13.8,7.3,12,4.8z"
></path>
<path
d="M12,18.2c-0.4,0-0.7-0.3-0.7-0.7s0.3-0.7,0.7-0.7c1.3,0,2.4-1.1,2.4-2.4c0-0.4,0.3-0.7,0.7-0.7c0.4,0,0.7,0.3,0.7,0.7C15.8,16.5,14.1,18.2,12,18.2z"
></path>
</symbol>
<symbol id="icon-menu" viewBox="0 0 119 25">
<title>menu</title>
<path d="M 0 5 L -0.139 0.148 L 107 0 L 107 5 L 0 5 Z Z M 19 19 L 19 15 L 86 15 L 86 20 L 19 20 Z"></path>
</symbol>
<symbol id="icon-close" viewBox="0 0 24 24">
<title>close</title>
<path
d="M24 1.485L22.515 0 12 10.515 1.485 0 0 1.485 10.515 12 0 22.515 1.485 24 12 13.484 22.515 24 24 22.515 13.484 12z"
></path>
</symbol>
<symbol id="rotatework" viewBox="0 0 147 147">
<title>Our work</title>
<path d="M73.5 147A73.5 73.5 0 1 0 73.5.01a73.5 73.5 0 0 0 0 146.99Z" fill="#fff" />
<path
d="m67 125.04-1.07-.22-.7 3.46-2.05-.41c-1.6-.33-2.82.4-3.11 1.85-.29 1.45.56 2.6 2.16 2.93l3.13.63 1.64-8.24Zm-1.95 4.2-.57 2.87-2.03-.41c-.97-.2-1.45-.86-1.28-1.75.18-.9.88-1.3 1.85-1.11l2.03.4ZM47.7 118.49l.53 4.58a2.2 2.2 0 0 0-2.33 1.29c-.6 1.27-.04 2.55 1.4 3.24l2.73 1.3 3.57-7.61-.99-.47-1.59 3.4-1.68-.8-.51-4.4-1.13-.53Zm1.76 9.06-1.64-.78c-.93-.44-1.27-1.16-.9-1.93.35-.78 1.12-.96 2.05-.52l1.63.78-1.14 2.45ZM41.12 113.52c-1.84-1.52-4.32-1.22-5.9.72-1.56 1.94-1.35 4.44.5 5.95 1.85 1.53 4.33 1.23 5.9-.7 1.57-1.95 1.36-4.45-.5-5.97Zm-.6.77c1.34 1.1 1.45 3 .24 4.48-1.21 1.5-3.08 1.78-4.42.68-1.37-1.12-1.46-3.01-.25-4.5 1.2-1.5 3.06-1.78 4.42-.66ZM33.79 106.4l-1.44-2.05c-1.35-1.92-3.64-2.58-5.84-1.01-2.2 1.56-2.35 3.95-1 5.88l1.43 2.04 6.85-4.87Zm-1.42-.32-5.26 3.73-.79-1.13c-.93-1.32-1.03-3.1.84-4.42 1.87-1.33 3.48-.64 4.41.69l.8 1.13ZM25.57 91.39c-.65-1.81-2.13-2.63-3.9-2l-5.17 1.87.36 1 5.22-1.89c1.16-.41 2.13.14 2.56 1.35.43 1.2.02 2.24-1.13 2.65l-5.23 1.88.35 1.01 5.18-1.86c1.76-.63 2.4-2.21 1.76-4.01ZM22.58 77.24c-.15-1.8-1.25-3.03-2.87-3.32l-.14 1.11c1.19.2 1.93 1 2.03 2.3.14 1.7-.92 3.03-3.07 3.2-2.14.18-3.4-.96-3.54-2.66-.1-1.3.52-2.26 1.71-2.62l-.32-1.05c-1.6.47-2.51 1.9-2.36 3.74.16 2.1 1.72 3.95 4.6 3.72 2.89-.24 4.13-2.31 3.96-4.42ZM22.95 65.95l.16-1.08-7.34-1.14.4-2.63-.96-.15-.97 6.36.96.15.4-2.65 7.35 1.14ZM23.85 56.83l1.17.43.4-1.1-1.17-.44-.4 1.11ZM33.51 41.34l1.7-1.84c1.58-1.73 1.74-4.12-.24-5.96-1.98-1.84-4.34-1.49-5.93.25l-1.68 1.84 6.15 5.71Zm.01-1.46-4.72-4.39.93-1.02c1.1-1.19 2.8-1.66 4.48-.1 1.68 1.56 1.34 3.3.25 4.49l-.94 1.02ZM43.62 31.67l4.6-2.86-.5-.84-3.69 2.29-1.56-2.55 2.9-1.8-.52-.84-2.9 1.8-1.29-2.1 3.57-2.22-.51-.83-4.5 2.8 4.4 7.15ZM58.52 24.45c1.75-.54 2.63-1.8 2.2-3.17-.98-3.2-5.2-.58-5.76-2.42-.22-.72.26-1.36 1.29-1.68 1-.32 1.86.02 2.3.84l.83-.66c-.58-1.13-1.95-1.57-3.42-1.11-1.58.5-2.44 1.7-2.05 2.94.87 2.85 5.08.3 5.75 2.44.24.8-.3 1.54-1.4 1.89a2.16 2.16 0 0 1-2.66-1.2l-.89.62c.72 1.39 2.26 2 3.8 1.51ZM67.55 22.41l1.09-.1-.81-8.37-1.09.11.81 8.36ZM80.18 22.58c1.18.15 2.32-.24 2.8-1.04l-.16 1.28.99.13.54-4.3-3.93-.5-.11.94 2.9.37c-.22 1.46-1.34 2.35-2.9 2.15-1.67-.22-2.75-1.54-2.48-3.66.26-2.12 1.64-3.14 3.33-2.92 1.32.17 2.16 1 2.25 2.2l1.1-.08c-.13-1.65-1.37-2.85-3.23-3.09-2.08-.26-4.21.9-4.57 3.75-.36 2.84 1.4 4.5 3.47 4.77ZM90.25 24.73l.98.42L93.8 19l1.33 7.8 1.12.47 3.24-7.75-.99-.41-2.58 6.16-1.32-7.82-1.11-.47-3.24 7.75ZM103.29 30.06l-.73 1.02.96.69.72-1.02-.95-.69ZM115.33 43.7l.61.9 6.93-4.76-.62-.9-6.92 4.75ZM119.99 51.45l.91 2.32c.86 2.2 2.93 3.37 5.44 2.37 2.51-1 3.23-3.28 2.37-5.47l-.91-2.32-7.81 3.1Zm1.3.64 6-2.38.5 1.29c.6 1.5.27 3.25-1.86 4.1-2.13.84-3.54-.22-4.13-1.72l-.5-1.29ZM124.22 64.8l.56 5.4.97-.1-.44-4.31 2.97-.31.35 3.39.98-.1-.35-3.4 2.46-.25.43 4.18.97-.1-.55-5.27-8.35.88ZM124.73 78.82l-.17 1.05 6.56 1.12-7.27 3.06-.2 1.2 8.28 1.4.18-1.05-6.6-1.12 7.3-3.05.2-1.2-8.28-1.41ZM120.63 94.25l-.43 1 6.8 2.99-1.06 2.44.89.4 2.56-5.9-.9-.4-1.06 2.46-6.8-2.99ZM116.4 102.16l-.63.9 6.9 4.8.62-.9-6.9-4.8ZM109.4 110.67l-.78.76 5.16 5.35-1.9 1.86.67.7 4.6-4.5-.68-.7-1.9 1.87-5.17-5.34ZM100.7 117.56l-.95.56 1.8 3.03-.05 5.73 1.06-.64v-4.48l3.9 2.14 1.06-.64-5.03-2.68-1.79-3.02ZM91.43 123.47l-.4-1.18-1.1.37.39 1.19 1.11-.38Z"
/>
</symbol>
<symbol id="star-pair" width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_973_5325)">
<path
d="M9.22876 7.6839C6.20144 3.44645 9.22876 7.6839 6.20144 3.44645C4.76212 1.43177 2.85651 0.101502 1.52622 1.43178"
stroke="#281E1E"
stroke-width="1.13333"
/>
<path
d="M7.82062 9.09107C3.58316 6.06374 7.82062 9.09107 3.58316 6.06374C1.56849 4.62443 0.238221 2.71881 1.5685 1.38853"
stroke="#281E1E"
stroke-width="1.13333"
/>
<path
d="M2.12917 5.0862C2.66812 5.62515 7.62543 8.95606 8.58951 8.95606C10.4074 7.81988 6.52646 4.09228 5.39722 2.6756C3.98567 0.904751 2.47575 0.481286 1.1968 1.76023C0.281431 2.6756 1.46314 4.42017 2.12917 5.0862Z"
fill="#281E1E"
/>
<path
d="M9.3161 7.77222C13.5536 10.7995 9.3161 7.77222 13.5536 10.7995C15.5682 12.2389 16.8985 14.1445 15.5682 15.4748"
stroke="#281E1E"
stroke-width="1.13333"
/>
<path
d="M7.90698 9.17938C10.9343 13.4168 7.90698 9.17938 10.9343 13.4168C12.3736 15.4315 14.2792 16.7618 15.6095 15.4315"
stroke="#281E1E"
stroke-width="1.13333"
/>
<path
d="M11.9128 14.8708C11.3739 14.3319 8.04297 9.37457 8.04297 8.41049C9.17915 6.5926 12.9067 10.4735 14.3234 11.6028C16.0943 13.0143 16.5177 14.5243 15.2388 15.8032C14.3234 16.7186 12.5789 15.5369 11.9128 14.8708Z"
fill="#281E1E"
/>
<path
d="M7.6839 7.77221C3.44645 10.7995 7.6839 7.77221 3.44645 10.7995C1.43177 12.2389 0.101502 14.1445 1.43178 15.4748"
stroke="#281E1E"
stroke-width="1.13333"
/>
<path
d="M9.09302 9.17938C6.0657 13.4168 9.09302 9.17938 6.0657 13.4168C4.62638 15.4315 2.72076 16.7618 1.39048 15.4315"
stroke="#281E1E"
stroke-width="1.13333"
/>
<path
d="M5.08717 14.8708C5.62613 14.3319 8.95703 9.37457 8.95703 8.41049C7.82085 6.5926 4.09326 10.4735 2.67658 11.6028C0.905727 13.0143 0.482262 14.5243 1.76121 15.8032C2.67658 16.7186 4.42115 15.5369 5.08717 14.8708Z"
fill="#281E1E"
/>
<path
d="M7.77124 7.6839C10.7986 3.44645 7.77124 7.6839 10.7986 3.44645C12.2379 1.43177 14.1435 0.101502 15.4738 1.43178"
stroke="#281E1E"
stroke-width="1.13333"
/>
<path
d="M9.18035 9.09107C13.4178 6.06374 9.18035 9.09107 13.4178 6.06374C15.4325 4.62443 16.7628 2.71881 15.4325 1.38853"
stroke="#281E1E"
stroke-width="1.13333"
/>
<path
d="M14.8708 5.0862C14.3319 5.62515 9.37457 8.95606 8.41049 8.95606C6.5926 7.81988 10.4735 4.09228 11.6028 2.6756C13.0143 0.904751 14.5243 0.481286 15.8032 1.76023C16.7186 2.6756 15.5369 4.42017 14.8708 5.0862Z"
fill="#281E1E"
/>
</g>
<defs>
<clipPath id="clip0_973_5325">
<rect width="17" height="17" fill="black" />
</clipPath>
</defs>
</symbol>
</svg>
<main class="hero-section">
<div class="frame">
<div class="frame__author"><span>UZITRAKE</span></div>
<div class="frame__button">
<button class="unbutton button-menu" aria-label="Open menu">
<svg data-cursor="-hidden" class="icon icon-cursor icon--menuUzi">
<use xlink:href="#icon-menu"></use>
</svg>
</button>
</div>
<div class="frame__line"></div>
</div>
<div class="content-hero">
<div class="frame__contact" data-cursor="-medium -exclusion">
<span><a href="mailto:[email protected]">CONTACT</a></span>
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6 0V12" stroke="#FF3227" stroke-width="2" stroke-miterlimit="10" />
<path d="M12 6H0" stroke="#FF3227" stroke-width="2" stroke-miterlimit="10" />
</svg>
</div>
<div class="content__l1">
<span class="l1__left"> Creative </span>
<span class="l1__right">
<span>FREELANCER</span>
<span>DEVELOPER</span>
<span>UX/UI DESIGNER</span>
</span>
</div>
<div class="content__l2">
<div class="l2__left">
<div class="rotatework">
<svg>
<use xlink:href="#rotatework" style="height: 70%"></use>
</svg>
</div>
</div>
<div class="l2__right">
<span>developer</span>
</div>
</div>
<div class="content__l3">
<div class="l3__left">
<svg height="50px" viewBox="0 0 24 23" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M15.7196 11.9163C13.8735 11.9163 12.3279 13.3863 12.3279 15.2342V22.5H11.641V15.2342C11.641 13.3863 10.0954 11.9163 8.20639 11.9163H0.822021V11.2443H8.20639C10.0954 11.2023 11.641 9.73237 11.5981 7.88442V0.660645H12.3279V7.88442C12.3279 9.73237 13.8735 11.2023 15.7196 11.2023H23.1469V11.9163H15.7196Z"
fill="currentColor"
></path>
</svg>
</div>
<div class="l3__right">
<span>specializing in web design for brands worldwide </span>
<span> Web design innovation driven by strategy and precision</span>
</div>
</div>
<div class="content__l4">
<div class="l4__left">
<span>Designer</span>
</div>
<div class="l4__right">
<div class="div"></div>
</div>
</div>
<div class="frame__line__low" line-triggerX=".frame__line__low"></div>
</div>
<div class="menu-wrap">
<main>
<nav class="menu">
<a href="#slide--6 " class="menu__item">
<span data-splitting class="menu__item-title">Contact</span>
<span data-splitting class="menu__item-sub">reach me</span>
</a>
<a href="#content-1" class="menu__item menu-work">
<span data-splitting class="menu__item-title">Work</span>
<span data-splitting class="menu__item-sub">cases</span>
</a>
<a href="#slide--6 " class="menu__item">
<span data-splitting class="menu__item-title">Socials</span>
<span data-splitting class="menu__item-sub">follow</span>
</a>
</nav>
<svg class="dark-toggle" stroke-linecap="round">
<g class="toggle" style="cursor: pointer; user-select: none">
<path d="M25,20 43,20" stroke-width="25" />
<path class="knob" d="M25,20 25,20" stroke-width="20" stroke="#000" />
</g>
</svg>
</main>
<div class="gallery menu-gallery">
<figure data-scroll data-scroll-speed="1" class="gallery__item">
<div class="gallery__item-img">
<div
class="gallery__item-imginner"
data-image="'img/works/12.jpg'"
style="background-image: url(img/works/1.jpg)"
></div>
</div>
</figure>
<figure data-scroll data-scroll-speed="2.5" class="gallery__item">
<div class="gallery__item-img">
<div
class="gallery__item-imginner"
data-image="'img/works/13.jpg'"
style="background-image: url(img/works/2.jpg)"
></div>
</div>
</figure>
<figure data-scroll data-scroll-speed="4" class="gallery__item">
<div class="gallery__item-img">
<div
class="gallery__item-imginner"
data-image="'img/works/17.jpg'"
style="background-image: url(img/works/6.jpg)"
></div>
</div>
</figure>
<figure data-scroll data-scroll-speed="1" class="gallery__item">
<div class="gallery__item-img">
<div
class="gallery__item-imginner"
data-image="'img/works/22.jpg'"
style="background-image: url(img/works/3.jpg)"
></div>
</div>
</figure>
</div>
<div class="cursor">
<svg class="cursor__line cursor__line--horizontal" viewBox="0 0 200 20" preserveAspectRatio="none">
<defs>
<filter id="filter-noise-x" x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox">
<feTurbulence type="fractalNoise" baseFrequency="0" numOctaves="1" result="warp" />
<feOffset dx="-30" result="warpOffset" />
<feDisplacementMap
xChannelSelector="R"
yChannelSelector="G"
scale="30"
in="SourceGraphic"
in2="warpOffset"
/>
</filter>
</defs>
<line
class="cursor__line-element"
x1="0"
y1="10"
x2="200"
y2="10"
shape-rendering="crispEdges"
vector-effect="non-scaling-stroke"
/>
</svg>
<svg class="cursor__line cursor__line--vertical" viewBox="0 0 20 200" preserveAspectRatio="none">
<defs>
<filter id="filter-noise-y" x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox">
<feTurbulence type="fractalNoise" baseFrequency="0" numOctaves="1" result="warp" />
<feOffset dy="-30" result="warpOffset" />
<feDisplacementMap
xChannelSelector="R"
yChannelSelector="G"
scale="30"
in="SourceGraphic"
in2="warpOffset"
/>
</filter>
</defs>
<line
class="cursor__line-element"
x1="10"
y1="0"
x2="10"
y2="200"
shape-rendering="crispEdges"
vector-effect="non-scaling-stroke"
/>
</svg>
</div>
<link rel="stylesheet" type="text/css" href="libs-js/splitting-cells.css" />
<link rel="stylesheet" type="text/css" href="libs-js/splitting.css" />
<script src="libs-js/scrolltrigger.js"></script>
<script src="libs-js/splitting.min.js"></script>
<script src="libs-js/gsap.min.js"></script>
<script type="module" src="js/distort/index.js"></script>
<button class="unbutton button-close" aria-label="close menu" data-cursor="-hidden">
<svg class="icon icon-cursor icon--menuUzi">
<use xlink:href="#icon-close"></use>
</svg>
</button>
</div>
<svg class="overlay" width="100%" height="100%" viewBox="0 0 100 100" preserveAspectRatio="none">
<path class="overlay__path" vector-effect="non-scaling-stroke" d="M 0 100 V 100 Q 50 100 100 100 V 100 z" />
</svg>
</main>
<section>
<div class="intro-port">
<div class="intro-port-menu">
<div class="top-border"></div>
<div class="bottom-border"></div>
<div class="guide-line" line-triggerY=".frame__line__low"></div>
<div class="name-gmt">
<div class="dim-header">Location</div>
<div>GMT+3(<span class="time"></span>, KE)</div>
</div>
<div class="work-status">
<div class="dim-header">Status</div>
<div class="status">
AVAILABLE FOR WORK
<svg
height="15px"
width="15px"
class="-blink"
version="1.1"
id="Capa_1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 0 31.955 31.955"
xml:space="preserve"
>
<g>
<path
style="fill: #26c406"
d="M27.25,4.655C20.996-1.571,10.88-1.546,4.656,4.706C-1.571,10.96-1.548,21.076,4.705,27.3
c6.256,6.226,16.374,6.203,22.597-0.051C33.526,20.995,33.505,10.878,27.25,4.655z"
></path>
<path
style="fill: #26c406"
d="M13.288,23.896l-1.768,5.207c2.567,0.829,5.331,0.886,7.926,0.17l-0.665-5.416
C17.01,24.487,15.067,24.5,13.288,23.896z M8.12,13.122l-5.645-0.859c-0.741,2.666-0.666,5.514,0.225,8.143l5.491-1.375
C7.452,17.138,7.426,15.029,8.12,13.122z M28.763,11.333l-4.965,1.675c0.798,2.106,0.716,4.468-0.247,6.522l5.351,0.672
C29.827,17.319,29.78,14.193,28.763,11.333z M11.394,2.883l1.018,5.528c2.027-0.954,4.356-1.05,6.442-0.288l1.583-5.137
C17.523,1.94,14.328,1.906,11.394,2.883z"
></path>
<circle style="fill: #26c406" cx="15.979" cy="15.977" r="6.117"></circle>
</g>
</svg>
</div>
<br />
WORKING WORLDWIDE
</div>
<div class="lets-connect">
<div class="dim-header">Socials</div>
<div class="intro-insta">INSTAGRAM</div>
<div class="intro-whats">DRIBBLE</div>
</div>
<div class="signature s1">
<span>uzitrake</span>
</div>
</div>
<div class="designer-desc">
<div class="dev-forlio">
<svg width="17" height="17" class="starsvg" fill="none" xmlns="http://www.w3.org/2000/svg">
<use xlink:href="#star-pair" />
</svg>
<span> <span class="italic"> (design) </span><span>FORLIO</span> </span>
<div class="spacing-arrow">
<div class="spacing-arrow-inner"></div>
</div>
<span>2024</span>
</div>
<div class="dev-header">
Hey there! I'm Uzi Trake.<br />A <span class="tomato">Digital Designer</span> <br />Based in Kenya(KE)
</div>
<div class="head-desc">
<div class="desc-1">
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6 0V12" stroke="#FF3227" stroke-width="2" stroke-miterlimit="10" />
<path d="M12 6H0" stroke="#FF3227" stroke-width="2" stroke-miterlimit="10" /></svg
><span> Current works : TRAKEXCEL STUDIO</span>
</div>
<div class="desc-2">
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6 0V12" stroke="#FF3227" stroke-width="2" stroke-miterlimit="10" />
<path d="M12 6H0" stroke="#FF3227" stroke-width="2" stroke-miterlimit="10" /></svg
><span> Available for freelance</span>
</div>
<div class="desc-3">
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M6 0V12" stroke="#FF3227" stroke-width="2" stroke-miterlimit="10" />
<path d="M12 6H0" stroke="#FF3227" stroke-width="2" stroke-miterlimit="10" /></svg
><span> Full stack developer</span>
</div>
</div>
</div>
<div class="work-areas">
<div class="design-areas">
<span>MY WORK AREAS</span>
<span class="works-svg"
><svg viewBox="0 0 419 227" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M264.027 227L209.5 171.94L154.973 227H0V196.089H152.103L21.0458 118.813L36.3516 91.766L167.409 169.043L91.8357 35.7404L118.621 20.2851L194.194 153.587V0H224.806V153.587L301.336 20.2851L327.164 35.7404L251.591 169.043L382.648 91.766L397.954 118.813L266.897 196.089H419V227H264.027Z"
fill="black"
></path></svg
></span>
</div>
<div class="work-areas-spans">
<span data-cursor="-medium -opaque" class="stick-fill" data-cursor-stick>FRONTEND DEVELOPMENT</span>
<span data-cursor="-medium -exclusion" data-magnetic>UX/UI design</span>
<span data-cursor="-medium -opaque" class="stick-fill" data-cursor-stick>Branding</span>
<span data-cursor="-medium -exclusion" data-magnetic>WEB REBRANDING</span>
<span data-cursor="-medium -exclusion" data-magnetic>Backend</span>
<span data-cursor="-medium -opaque" class="stick-fill" data-cursor-stick>WEB MAINTAINANCE</span>
<span data-cursor="-medium -exclusion" data-magnetic>Mobile apps</span>
<span data-cursor="-medium -opaque" class="stick-fill" data-cursor-stick>IT consultancy</span>
</div>
</div>
<div class="proof-experience">
<div class="top-border"></div>
<div class="years-xp">
<span class="xp-head">4+</span>
<span class="xp-footer">YEARS X-PERIENCE</span>
</div>
<div class="projects-xp">
<span class="xp-head">10+</span>
<span class="xp-footer">PROFFESIONAL PROJECTS</span>
</div>
<div class="more-xp">
<span class="xp-head">3</span>
<span class="xp-footer">DESIGN AWARDS</span>
</div>
</div>
<div class="designer-image">
<svg height="100%" viewBox="0 0 464 463" fill="none" xmlns="http://www.w3.org/2000/svg">
<!-- 🧠 svg clip path -->
<clipPath id="e-letter">
<path
d="M426.794 276.327L349.999 353.122C347.867 355.254 344.424 355.254 342.306 353.122C340.174 350.991 340.174 347.547 342.306 345.429L419.088 268.647C439.598 248.137 439.598 214.877 419.088 194.366L342.292 117.571C340.16 115.439 340.16 111.996 342.292 109.878V109.878C344.42 107.749 347.871 107.749 349.999 109.878L426.781 186.659C428.954 188.832 431.277 190.772 433.695 192.494C446.39 201.445 463.908 192.153 463.908 176.616V51.7481C463.908 23.1753 440.746 0 412.16 0H52.6832C24.0967 0 0.935059 23.1616 0.935059 51.7481V411.252C0.935059 439.825 24.0967 463 52.6832 463H412.187C440.76 463 463.935 439.838 463.935 411.252V286.411C463.935 270.861 446.39 261.555 433.695 270.519C431.277 272.228 428.967 274.168 426.808 276.327H426.794Z"
></path>
</clipPath>
<!-- 🧠 image hosted on Webflow + clip path reference -->
<image
clip-path="url(#e-letter)"
xlink:href="img/works/6cf5b775a00df6b08851c07b2df04882.jpg"
alt="Image"
width="100%"
class="e-letter"
></image>
</svg>
</div>
</div>
</section>
<!-- Works section? -->
<link rel="stylesheet" type="text/css" href="css/works.css" />
<section class="works">
<header class="section__header">
<div
style="
transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(-5deg)
skew(0deg, 0deg);
transform-style: preserve-3d;
"
class="tag"
>
<div class="caps align-c">😎 <span class="script size-sm">Cool</span></div>
</div>
<span class="section__year">2020</span>
<h2 class="section__title section__title--medium" data-splitting data-effect28>
Selected <br />
work
</h2>
<span class="section__year">2024</span>
</header>
<section class="items">
<article class="item">
<div class="item__imgwrap">
<div class="item__img" style="background-image: url(img/works/1.jpg)"></div>
</div>
<button class="item__enter unbutton">
<div class="viewcase">
<span class="cursor__text" data-splitting>+ view case</span>
<span class="hidden-explore" data-splitting>+ explore</span>
</div>
<svg
class="item__enter-circle"
vector-effect="non-scaling-stroke"
width="800"
height="800"
viewBox="0 0 800 800"
>
<circle vector-effect="non-scaling-stroke" cx="400" cy="400" r="150" />
</svg>
</button>
<h2 class="heading heading--item">
<span data-splitting>Hypercritical</span>
<!-- <span data-splitting>mass</span> -->
</h2>
<div class="item__meta">
<span class="item__meta-row"><span>✺Branding</span></span>
<span class="item__meta-row"><span>April — 2023</span></span>
<span class="item__meta-row"><span>CLIENT : Hypercritical studio</span></span>
</div>
<div class="item__excerpt">
<a class="item__excerpt-link" href="#content-1"><span>Discover work</span></a>
</div>
</article>
<article class="item item--invert">
<div class="item__imgwrap">
<div class="item__img" style="background-image: url(img/works/2.png)"></div>
</div>
<button class="item__enter unbutton">
<div class="viewcase">
<span class="cursor__text" data-splitting>+ view case</span>
<span class="hidden-explore" data-splitting>+ explore</span>
</div>
<svg
class="item__enter-circle"
vector-effect="non-scaling-stroke"
width="800"
height="800"
viewBox="0 0 800 800"
>
<circle vector-effect="non-scaling-stroke" cx="400" cy="400" r="150" />
</svg>
</button>
<h2 class="heading heading--item">
<span data-splitting>Trakexcel</span>
<!-- <span data-splitting>times</span> -->
</h2>
<div class="item__meta">
<span class="item__meta-row"><span>✺Web design</span></span>
<span class="item__meta-row"><span>March — 2023</span></span>
<span class="item__meta-row"><span>For Trakexcel Agency</span></span>
</div>
<div class="item__excerpt">
<a class="item__excerpt-link" href="#content-2"><span>Discover work</span></a>
</div>
</article>
<article class="item">
<div class="item__imgwrap">
<div
class="item__img"
style="background-image: url(img/works/65ae9a9538f662e9dd212623_CaseStudy_Hero.webp)"
></div>
</div>
<button class="item__enter unbutton">
<div class="viewcase">
<span class="cursor__text" data-splitting>+ view case</span>
<span class="hidden-explore" data-splitting>+ explore</span>
</div>
<svg
class="item__enter-circle"
vector-effect="non-scaling-stroke"
width="800"
height="800"
viewBox="0 0 800 800"
>
<circle vector-effect="non-scaling-stroke" cx="400" cy="400" r="150" />
</svg>
</button>
<h2 class="heading heading--item">
<span data-splitting>DNAnexus</span>
<!-- <span data-splitting>prime</span> -->
</h2>
<div class="item__meta">
<span class="item__meta-row"><span>✺Brand design</span></span>
<span class="item__meta-row"><span>December — 2022</span></span>
<span class="item__meta-row"><span>CLIENT : experimental</span></span>
</div>
<div class="item__excerpt">
<a class="item__excerpt-link" href="#content-5"><span>Discover work</span></a>
</div>
</article>
<article class="item item--invert">
<div class="item__imgwrap">
<div class="item__img" style="background-image: url(img/works/design-1707009500068.jpg)"></div>
</div>
<button class="item__enter unbutton">
<div class="viewcase">
<span class="cursor__text" data-splitting>+ view case</span>
</div>
<svg
class="item__enter-circle"
vector-effect="non-scaling-stroke"
width="800"
height="800"
viewBox="0 0 800 800"
>
<circle vector-effect="non-scaling-stroke" cx="400" cy="400" r="150" />
</svg>
</button>
<h2 class="heading heading--item">
<span data-splitting>Quantum</span>
<!-- <span data-splitting>leap</span> -->
</h2>
<div class="item__meta">
<span class="item__meta-row"><span>✺Web Design</span></span>
<span class="item__meta-row"><span>January — 2023</span></span>
<span class="item__meta-row"><span>For Lorenzo Augusto</span></span>
</div>
<div class="item__excerpt">
<a class="item__excerpt-link" href="#content-6"><span>Discover work</span></a>
</div>
</article>
</section>
<section class="content">
<article class="content__article" id="content-1">
<div class="content-works">
<h2 class="heading">
<span data-splitting>Hypercritical</span>
</h2>
<div class="case-no">CASE 01-04</div>
<div class="project-task content__detail">
<p>
<span class="landing-font">TASK - </span>Sometimes five Imprimaturs are seen together dialogue-wise in
the piazza of one title-page, complimenting and ducking each to other with their shaven reverences,
whether the author
</p>
<p><span class="landing-font">FIELD - </span>DEVELOPMENT ,RE-BRANDING</p>
</div>
<div class="project-role content__detail">
<p><span class="landing-font">ROLE - </span>Art designer,Director</p>
<p>
<span class="landing-font">RECOGNISION - </span>These are the pretty responsories, these are the dear
antiphonies, that so bewitched of late our prelates and their chaplains with the goodly echo they made
</p>
</div>
<div class="content__text content__detail">
<div class="project-aim">
<div class="main-aim">
<span>Problem</span>
</div>
</div>
<div class="project-problem mid-font">
<p>
Butterfly Network, a pioneer in advanced handheld ultrasound solutions, sought to elevate its
enterprise UI/UX for hospitals and large medical systems. Recognizing the need for a design partner
versed in healthcare technology and human-centered design, they turned to us. As our collaboration
progressed, our involvement expanded to include enhancing their point-of-care ultrasound experience.
</p>
<br />
<p>
This project entailed developing a robust design system and refining digital touchpoints, ensuring a
seamless user experience across their app ecosystem with a design partner capable of adapting to their
continuously evolving requirements.
</p>
</div>
<div class="how-solution">
<div class="main-aim">
<span>Solution</span>
</div>
</div>
<div class="achieved-solution mid-font">
<p>
Throughout our partnership, we engaged in several major projects. We began by optimizing and
streamlining workflows and enterprise UI/UX across their platform and addressed critical
enterprise-wide design considerations. Next, we tackled mobile, ideating on completely new app
directions and reimagining user interactions that could leverage their existing AI capabilities.
Focusing on onboarding, we helped rethink these flows and provided a library of custom illustrations
that effectively narrated our approach. Finally, we were entrusted with unifying and developing a
comprehensive design system that drove speed and consistency across the design, product and
engineering teams.
</p>
</div>
</div>
<div class="project-image">
<img src="img/works/1.jpg" alt="Some image" />
</div>
</div>
</article>
<article class="content__article content__article--invert" id="content-2">
<div class="content-works">
<h2 class="heading">
<span data-splitting>Trakexcel</span>
</h2>
<div class="case-no">CASE 02-04</div>
<div class="project-task content__detail">
<p>
<span class="landing-font">TASK - </span>Sometimes five Imprimaturs are seen together dialogue-wise in
the piazza of one title-page, complimenting and ducking each to other with their shaven reverences,
whether the author
</p>
<p><span class="landing-font">FIELD - </span>UX/UI DESIGN ,RE-BRANDING</p>
</div>
<div class="project-role content__detail">
<p><span class="landing-font">ROLE - </span>Art designer,Director</p>
<p>
<span class="landing-font">RECOGNISION - </span>These are the pretty responsories, these are the dear
antiphonies, that so bewitched of late our prelates and their chaplains with the goodly echo they made
</p>
</div>
<div class="content__text content__detail">
<div class="project-aim">
<div class="main-aim">
<span>Problem</span>
</div>
</div>
<div class="project-problem mid-font">
<p>
Butterfly Network, a pioneer in advanced handheld ultrasound solutions, sought to elevate its
enterprise UI/UX for hospitals and large medical systems. Recognizing the need for a design partner
versed in healthcare technology and human-centered design, they turned to us. As our collaboration
progressed, our involvement expanded to include enhancing their point-of-care ultrasound experience.
</p>
<br />
<p>
This project entailed developing a robust design system and refining digital touchpoints, ensuring a
seamless user experience across their app ecosystem with a design partner capable of adapting to their
continuously evolving requirements.
</p>
</div>
<div class="how-solution">
<div class="main-aim">
<span>Solution</span>
</div>
</div>
<div class="achieved-solution mid-font">
<p>
Throughout our partnership, we engaged in several major projects. We began by optimizing and
streamlining workflows and enterprise UI/UX across their platform and addressed critical
enterprise-wide design considerations. Next, we tackled mobile, ideating on completely new app
directions and reimagining user interactions that could leverage their existing AI capabilities.
Focusing on onboarding, we helped rethink these flows and provided a library of custom illustrations
that effectively narrated our approach. Finally, we were entrusted with unifying and developing a
comprehensive design system that drove speed and consistency across the design, product and
engineering teams.
</p>
</div>
</div>
<div class="project-image">
<img src="img/works/2.png" alt="Some image" />
</div>
</div>
</article>
<article class="content__article" id="content-5">
<div class="content-works">
<h2 class="heading">
<span data-splitting>Temperance</span>
</h2>
<div class="case-no">CASE 03-04</div>
<div class="project-task content__detail">
<p>
<span class="landing-font">TASK - </span>Sometimes five Imprimaturs are seen together dialogue-wise in
the piazza of one title-page, complimenting and ducking each to other with their shaven reverences,
whether the author
</p>
<p><span class="landing-font">FIELD - </span>UX/UI DESIGN ,RE-BRANDING</p>
</div>
<div class="project-role content__detail">
<p><span class="landing-font">ROLE - </span>Art designer,Director</p>
<p>
<span class="landing-font">RECOGNISION - </span>These are the pretty responsories, these are the dear
antiphonies, that so bewitched of late our prelates and their chaplains with the goodly echo they made
</p>
</div>
<div class="content__text content__detail">
<div class="project-aim">
<div class="main-aim">
<span>Problem</span>
<span
><span class="innerFl innerFl1 flex flexCE">
<svg
class="fleche"
fill="none"
height="22"
viewBox="0 0 27 22"
width="27"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<clipPath id="a"><path d="m0 0h26.13v21.46h-26.13z"></path></clipPath>
<g clip-path="url(#a)">
<path
d="m17.86 19.54c1.46-1.9 4.82-6.27 8.26-8.8-3.61-2.47-6.88-6.91999-8.3-8.83999-.33-.44-.58-.79-.67-.88-1.11-1.1100017-2.16-1.320008-2.89-.600008-.2088.201021-.3507.461527-.4061.746038-.0555.28452-.0219.57921.0961.84397.2033.49252.5142.93329.91 1.29.38.38 3.22 2.67 8 6.46l.53.41999h-.68c-4.48.15-13.56-.56999-17.92-.91999-1.26-.1-2.17-.17-2.34-.17-1.610003 0-2.45.55999-2.45 1.61999s.839997 1.61 2.45 1.61c.2 0 1.44-.08 3.17-.2 4.62-.31 13.23-.89 17.08-.89h.72l-.56.45c-1.74 1.37-7.44 5.89-8 6.45-.3935.3649-.7068.8076-.92 1.3-.1131.2648-.1431.5576-.086.8398.0572.2822.1988.5403.406.7402.73.73 1.76.53 2.88-.59.1-.07.37-.43.72-.88z"
fill="#181818"
></path>
</g>
</svg> </span
></span>
</div>
</div>
<div class="project-problem mid-font">
<p>
Butterfly Network, a pioneer in advanced handheld ultrasound solutions, sought to elevate its
enterprise UI/UX for hospitals and large medical systems. Recognizing the need for a design partner
versed in healthcare technology and human-centered design, they turned to us. As our collaboration
progressed, our involvement expanded to include enhancing their point-of-care ultrasound experience.
</p>
<br />
<p>
This project entailed developing a robust design system and refining digital touchpoints, ensuring a
seamless user experience across their app ecosystem with a design partner capable of adapting to their
continuously evolving requirements.
</p>
</div>
<div class="how-solution">
<div class="main-aim">
<span>Solution</span>
<span class="innerFl innerFl1 flex flexCE">
<svg
class="fleche"
fill="none"
height="22"
viewBox="0 0 27 22"
width="27"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<clipPath id="a"><path d="m0 0h26.13v21.46h-26.13z"></path></clipPath>
<g clip-path="url(#a)">
<path
d="m17.86 19.54c1.46-1.9 4.82-6.27 8.26-8.8-3.61-2.47-6.88-6.91999-8.3-8.83999-.33-.44-.58-.79-.67-.88-1.11-1.1100017-2.16-1.320008-2.89-.600008-.2088.201021-.3507.461527-.4061.746038-.0555.28452-.0219.57921.0961.84397.2033.49252.5142.93329.91 1.29.38.38 3.22 2.67 8 6.46l.53.41999h-.68c-4.48.15-13.56-.56999-17.92-.91999-1.26-.1-2.17-.17-2.34-.17-1.610003 0-2.45.55999-2.45 1.61999s.839997 1.61 2.45 1.61c.2 0 1.44-.08 3.17-.2 4.62-.31 13.23-.89 17.08-.89h.72l-.56.45c-1.74 1.37-7.44 5.89-8 6.45-.3935.3649-.7068.8076-.92 1.3-.1131.2648-.1431.5576-.086.8398.0572.2822.1988.5403.406.7402.73.73 1.76.53 2.88-.59.1-.07.37-.43.72-.88z"
fill="#181818"
></path>
</g>
</svg>
</span>
</div>
</div>
<div class="achieved-solution mid-font">
<p>
Throughout our partnership, we engaged in several major projects. We began by optimizing and
streamlining workflows and enterprise UI/UX across their platform and addressed critical
enterprise-wide design considerations. Next, we tackled mobile, ideating on completely new app
directions and reimagining user interactions that could leverage their existing AI capabilities.
Focusing on onboarding, we helped rethink these flows and provided a library of custom illustrations
that effectively narrated our approach. Finally, we were entrusted with unifying and developing a
comprehensive design system that drove speed and consistency across the design, product and
engineering teams.
</p>
</div>
</div>
<div class="project-image">
<img src="img/works/2.png" alt="Some image" />
</div>
</div>
</article>
<article class="content__article content__article--invert" id="content-6">
<div class="content-works">
<h2 class="heading">
<span data-splitting>Quantum</span>
</h2>
<div class="case-no">CASE 04-04</div>
<div class="project-task content__detail">
<p>
<span class="landing-font">TASK - </span>Sometimes five Imprimaturs are seen together dialogue-wise in
the piazza of one title-page, complimenting and ducking each to other with their shaven reverences,
whether the author
</p>
<p><span class="landing-font">FIELD - </span>UX/UI DESIGN ,RE-BRANDING</p>
</div>
<div class="project-role content__detail">
<p><span class="landing-font">ROLE - </span>Art designer,Director</p>
<p>
<span class="landing-font">RECOGNISION - </span>These are the pretty responsories, these are the dear
antiphonies, that so bewitched of late our prelates and their chaplains with the goodly echo they made
</p>
</div>
<div class="content__text content__detail">
<div class="project-aim">
<div class="main-aim">
<span>Problem</span>
</div>
</div>
<div class="project-problem mid-font">
<p>
Butterfly Network, a pioneer in advanced handheld ultrasound solutions, sought to elevate its
enterprise UI/UX for hospitals and large medical systems. Recognizing the need for a design partner
versed in healthcare technology and human-centered design, they turned to us. As our collaboration
progressed, our involvement expanded to include enhancing their point-of-care ultrasound experience.
</p>
<br />
<p>
This project entailed developing a robust design system and refining digital touchpoints, ensuring a
seamless user experience across their app ecosystem with a design partner capable of adapting to their
continuously evolving requirements.
</p>
</div>
<div class="how-solution">
<div class="main-aim">
<span>Solution</span>
</div>
</div>
<div class="achieved-solution mid-font">
<p>
Throughout our partnership, we engaged in several major projects. We began by optimizing and
streamlining workflows and enterprise UI/UX across their platform and addressed critical
enterprise-wide design considerations. Next, we tackled mobile, ideating on completely new app
directions and reimagining user interactions that could leverage their existing AI capabilities.
Focusing on onboarding, we helped rethink these flows and provided a library of custom illustrations
that effectively narrated our approach. Finally, we were entrusted with unifying and developing a
comprehensive design system that drove speed and consistency across the design, product and
engineering teams.
</p>
</div>
</div>
<div class="project-image">
<img src="img/works/2.png" alt="Some image" />
</div>
</div>
</article>
<button class="content__back unbutton" aria-label="back to portfolio">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0.5 -49.375 132.9 49.86">
<path
d="M 1.883 -24.447 l 131.4895 0 M 38.798 -49.375 C 38.798 -36.451 22.035 -25.81 0.5 -24.4475 C 22.035 -23.084 38.798 -12.443 38.798 0.482"
stroke="#FF0000"
stroke-width="1"
fill="none"
/>
</svg>
</button>
</section>
</section>
<script type="module" src="js/works/index.js"></script>
<section class="slide slide--6 pin-footer dark-section" id="slide-7" data-cursor="-inverse">