forked from mohnishlandge/React-Portfolio-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1161 lines (1159 loc) · 56.8 KB
/
Copy pathindex.html
File metadata and controls
1161 lines (1159 loc) · 56.8 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">
<head>
<meta charset="utf-8" />
<meta
content="width=device-width,initial-scale=1,shrink-to-fit=no,viewport-fit=cover"
name="viewport"
/>
<meta content="#111111" name="theme-color" />
<meta content="Mohnish Landge" name="author" />
<link href="/manifest.json" rel="manifest" />
<link href="/favicon.svg" rel="shortcut icon" />
<link href="/icon-256.png" rel="apple-touch-icon" />
<link href="/humans.txt" rel="author" type="text/plain" />
<meta content="https://tu2.tech/social-image.png" property="og:image" />
<meta content="image/png" property="og:image:type" />
<meta content="1200" property="og:image:width" />
<meta content="549" property="og:image:height" />
<meta content="Design portfolio of Mohnish Landge" property="og:title" />
<meta content="tu2.tech" property="og:site_name" />
<meta content="https://tu2.tech" property="og:url" />
<meta
content="Multidisciplinary product designer"
property="og:description"
/>
<meta content="summary" name="twitter:card" />
<meta
content="Multidisciplinary product designer"
name="twitter:description"
/>
<meta content="Design portfolio of Mohnish Landge" name="twitter:title" />
<meta content="@tu2music" name="twitter:site" />
<meta content="https://tu2.tech/social-image.png" name="twitter:image" />
<link href="/static/css/main.2f2880ca.chunk.css" rel="stylesheet" />
<script src="/static/js/0.c5a2c137.chunk.js" charset="utf-8"></script>
<script src="/static/js/2.6367ab2d.chunk.js" charset="utf-8"></script>
<script src="/static/js/3.0a3e0c14.chunk.js" charset="utf-8"></script>
<link
href="/static/css/6.9cabfbaa.chunk.css"
rel="stylesheet"
type="text/css"
/>
<script src="/static/js/6.9d8d5139.chunk.js" charset="utf-8"></script>
<link
href="/static/media/gotham-medium.0ad7d622.woff2"
rel="preload"
data-rh="true"
as="font"
crossorigin=""
/>
<link
href="/static/media/gotham-book.9c2a0ce4.woff2"
rel="preload"
data-rh="true"
as="font"
crossorigin=""
/>
<link href="https://tu2.tech/" rel="canonical" data-rh="true" />
<style data-rh="true">
@font-face {
font-family: Gotham;
font-weight: 400;
src: url(/static/media/gotham-book.9c2a0ce4.woff2) format("woff");
font-display: swap;
}
@font-face {
font-family: Gotham;
font-weight: 500;
src: url(/static/media/gotham-medium.0ad7d622.woff2) format("woff2");
font-display: swap;
}
</style>
<style data-rh="true">
:root {
--rgbBlack: 0 0 0;
--rgbWhite: 255 255 255;
--bezierFastoutSlowin: cubic-bezier(0.4, 0, 0.2, 1);
--durationXS: 200ms;
--durationS: 300ms;
--durationM: 400ms;
--durationL: 600ms;
--durationXL: 800ms;
--systemFontStack: system-ui, -apple-system, BlinkMacSystemFont,
San Francisco, Roboto, Segoe UI, Ubuntu, Helvetica Neue, sans-serif;
--fontStack: Gotham, system-ui, -apple-system, BlinkMacSystemFont,
San Francisco, Roboto, Segoe UI, Ubuntu, Helvetica Neue, sans-serif;
--monoFontStack: SFMono Regular, Roboto Mono, Consolas, Liberation Mono,
Menlo, Courier, monospace;
--japaneseFontStack: ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro,
Hiragino Sans, Osaka, メイリオ, Meiryo, Segoe UI, sans-serif;
--fontWeightRegular: 400;
--fontWeightMedium: 500;
--fontWeightBold: 700;
--fontSizeH0: 8.75rem;
--fontSizeH1: 6.25rem;
--fontSizeH2: 3.625rem;
--fontSizeH3: 2.375rem;
--fontSizeH4: 1.75rem;
--fontSizeBodyXL: 1.375rem;
--fontSizeBodyL: 1.25rem;
--fontSizeBodyM: 1.125rem;
--fontSizeBodyS: 1rem;
--fontSizeBodyXS: 0.875rem;
--lineHeightTitle: 1.1;
--lineHeightBody: 1.5;
--maxWidthS: 540px;
--maxWidthM: 720px;
--maxWidthL: 1096px;
--maxWidthXL: 1680px;
--spaceOuter: 64px;
--spaceXS: 4px;
--spaceS: 8px;
--spaceM: 16px;
--spaceL: 24px;
--spaceXL: 32px;
--space2XL: 48px;
--space3XL: 64px;
--space4XL: 96px;
--space5XL: 128px;
}
@media (max-width: 2080px) {
:root {
--fontSizeH0: 7.5rem;
--fontSizeH1: 5rem;
}
}
@media (max-width: 1680px) {
:root {
--maxWidthS: 480px;
--maxWidthM: 640px;
--maxWidthL: 1000px;
--maxWidthXL: 1100px;
--spaceOuter: 48px;
--fontSizeH0: 6.25rem;
--fontSizeH1: 4.375rem;
--fontSizeH2: 3.25rem;
--fontSizeH3: 2.25rem;
--fontSizeH4: 1.625rem;
}
}
@media (max-width: 1024px) {
:root {
--fontSizeH0: 5rem;
--fontSizeH1: 3.75rem;
--fontSizeH2: 3rem;
--fontSizeH3: 2rem;
--fontSizeH4: 1.5rem;
}
}
@media (max-width: 696px) {
:root {
--spaceOuter: 24px;
--fontSizeH0: 3.5rem;
--fontSizeH1: 2.5rem;
--fontSizeH2: 2.125rem;
--fontSizeH3: 1.75rem;
--fontSizeH4: 1.375rem;
--fontSizeBodyL: 1.125rem;
--fontSizeBodyM: 1rem;
--fontSizeBodyS: 0.875rem;
}
}
@media (max-width: 400px) {
:root {
--spaceOuter: 16px;
--fontSizeH0: 2.625rem;
--fontSizeH1: 2.375rem;
--fontSizeH2: 1.75rem;
--fontSizeH3: 1.5rem;
--fontSizeH4: 1.25rem;
}
}
.dark {
--rgbBackground: 17 17 17;
--rgbBackgroundLight: 26 26 26;
--rgbPrimary: 0 229 255;
--rgbAccent: 0 229 255;
--rgbText: 255 255 255;
--rgbError: 255 0 60;
--colorTextTitle: rgb(var(--rgbText) / 1);
--colorTextBody: rgb(var(--rgbText) / 0.8);
--colorTextLight: rgb(var(--rgbText) / 0.6);
}
.light {
--rgbBackground: 242 242 242;
--rgbBackgroundLight: 255 255 255;
--rgbPrimary: 0 0 0;
--rgbAccent: 0 229 255;
--rgbText: 0 0 0;
--rgbError: 210 14 60;
--colorTextTitle: rgb(var(--rgbText) / 1);
--colorTextBody: rgb(var(--rgbText) / 0.7);
--colorTextLight: rgb(var(--rgbText) / 0.6);
}
</style>
<title>Tu2 | Mohnish Landge</title>
<link
href="/static/media/iphone-11.dfa3acae.glb"
rel="prefetch"
data-rh="true"
as="fetch"
crossorigin=""
/>
<link
href="/static/media/macbook-pro.29527f3f.glb"
rel="prefetch"
data-rh="true"
as="fetch"
crossorigin=""
/>
<meta
content="Portfolio of Mohnish Landge – a digital designer working on web & mobile
apps with a focus on motion and user experience design."
name="description"
data-rh="true"
/>
</head>
<body class="dark">
<div id="player">
<audio autoplay loop>
<source src="static\media\tu2bg.mp3" type="audio/mp3" />
If you're reading this, audio isn't supported.
</audio>
</div>
<script>
const preferredTheme = JSON.parse(localStorage.getItem("theme"));
document.body.className = preferredTheme || "dark";
</script>
<div id="root">
<a
class="visually-hidden skip-to-main visually-hidden--show-on-focus"
href="#MainContent"
>Skip to main content</a
>
<header class="navbar">
<a
class="navbar__logo"
href="/#intro"
aria-label="Mohnish Landge, Creator"
><svg
aria-hidden="true"
height="29"
viewBox="0 0 46 29"
width="46"
class="monogram"
>
<defs>
<clipPath id="monogram-clip-1">
<path
d="M39.77,11.06c-2.91,2.47-4.63,2.58-.85,3.18.47-.07,1.48-1.42,1.48.63-.63,2.46-3.07.8-4.72.31-3.56-1-8.72,12.12-10.32,3.87-2.79,3.74-4.77,1.81-4.7,0,0-2.16,3.35-10.15,5.28-6.27.49,2.49-3,4.81-3,7.45,4.81-3.9,5-11.27,7.83-7.47.75,1.73-1,2.51-1.65,4C28.45,18,27.33,21,28,20.61a17.86,17.86,0,0,0,3.2-3.29c3.33-5.75,7.14-6.22,10.16-9.6a5.91,5.91,0,0,0-4.39,3c-2.72-1.08,3.33-5.15,4.9-4.92-4.65-1.7-13.39-.9-14.57-.51C22.57,8.41,18.75,18,18.06,20.19c-2.43,7.56,0,7.3-.94,8.32-2.1.94-4.92-4-4.05-5.35C12.2,13.33.69,12.87.58,10.24,1,4,34.22-.3,36.59.46,46.73.63,48.61,6.5,39.77,11.06Zm-17-5.46C-11.78,11,10.1,9,13.54,19.63,16,15.8,18.94,9.54,22.76,5.6Z"
></path>
</clipPath>
</defs>
<rect
height="100%"
width="100%"
clip-path="url(#monogram-clip-1)"
></rect>
<g clip-path="url(#monogram-clip-1)">
<rect
height="100%"
width="100%"
class="monogram__highlight"
></rect>
</g></svg></a
><button
aria-expanded="false"
aria-label="Menu"
class="button nav-toggle button--icon-only"
>
<span class="button__text"
><div class="nav-toggle__inner">
<svg
aria-hidden="true"
height="24"
viewBox="0 0 24 24"
width="24"
class="icon nav-toggle__icon nav-toggle__icon--menu"
>
<path
d="M22 6H2V4h20v2zM2 13h16v-2H2v2zm0 7h20v-2H2v2z"
></path></svg
><svg
aria-hidden="true"
height="24"
viewBox="0 0 24 24"
width="24"
class="icon nav-toggle__icon nav-toggle__icon--close"
>
<path
d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"
></path>
</svg></div
></span>
</button>
<nav class="navbar__nav">
<div class="navbar__nav-list">
<a class="navbar__nav-link" href="/#project-1">Portfolio</a
><a class="navbar__nav-link" href="/#details">Details</a
><a class="navbar__nav-link" href="/contact">Contact</a>
</div>
<div class="navbar__nav-icons">
<a
class="navbar__nav-icon-link"
href="https://open.spotify.com/artist/7mUNlk3btxGsPEBcWmgi8t"
rel="noopener noreferrer"
target="_blank"
aria-label="Figma"
><svg
aria-hidden="true"
height="24"
viewBox="0 0 24 24"
width="24"
class="icon navbar__nav-icon"
>
<path
d="M15 10a2 2 0 100 4 2 2 0 000-4zm-2 5.464A4 4 0 0017.646 9 4 4 0 0015 2H9a4 4 0 00-2.646 7 4.01 4.01 0 00-.818 1 4 4 0 00.818 5 3.977 3.977 0 00-.818 1A4 4 0 1013 18v-2.536zM11 16H9a2 2 0 102 2v-2zM9 8h2V4H9a2 2 0 100 4zm0 2a2 2 0 100 4h2v-4H9zm4-2V4h2a2 2 0 010 4h-2z"
fill-rule="evenodd"
></path></svg></a
><a
class="navbar__nav-icon-link"
href="https://soundcloud.com/tu2music"
rel="noopener noreferrer"
target="_blank"
aria-label="Twitter"
><svg
aria-hidden="true"
height="24"
viewBox="0 0 24 24"
width="24"
class="icon navbar__nav-icon"
>
<path
d="M22.92 6c-.77.35-1.6.58-2.46.69.88-.53 1.56-1.37 1.88-2.38-.83.5-1.75.85-2.72 1.05C18.83 4.5 17.72 4 16.46 4c-2.35 0-4.27 1.92-4.27 4.29 0 .34.04.67.11.98-3.56-.18-6.73-1.89-8.84-4.48-.37.63-.58 1.37-.58 2.15 0 1.49.75 2.81 1.91 3.56-.71 0-1.37-.2-1.95-.5v.03c0 2.08 1.48 3.82 3.44 4.21a4.22 4.22 0 01-1.93.07 4.28 4.28 0 004 2.98 8.521 8.521 0 01-5.33 1.84c-.34 0-.68-.02-1.02-.06C3.9 20.29 6.16 21 8.58 21c7.88 0 12.21-6.54 12.21-12.21 0-.19 0-.37-.01-.56.84-.6 1.56-1.36 2.14-2.23z"
></path></svg></a
><a
class="navbar__nav-icon-link"
href="https://www.youtube.com/channel/UCFOB6gHa-Y4eAECmAvXotWw"
rel="noopener noreferrer"
target="_blank"
aria-label="Dribbble"
><svg
aria-hidden="true"
height="24"
viewBox="0 0 24 24"
width="24"
class="icon navbar__nav-icon"
>
<path
d="M2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10A10 10 0 012 12zm14.86-6.09A7.726 7.726 0 0012 4.2c-.57 0-1.12.07-1.66.18.66.87 1.66 2.29 2.69 4.27 1.47-.65 2.81-1.51 3.83-2.74zM8.55 5c.55.65 1.63 2.06 2.79 4.25-2.34.71-4.73.87-6.16.87h-.13c-.24 0-.45 0-.62-.01C5 7.87 6.5 6 8.55 5zM4.2 11.89V12c0 1.91.7 3.66 1.84 5 .41-.61 1.12-1.54 2.15-2.5 1.08-.97 2.54-1.96 4.4-2.58-.15-.36-.3-.7-.45-1.03-2.78.87-5.52 1-7.08 1.01h-.01c-.34 0-.63 0-.85-.01zm12.22 6.53A57.5 57.5 0 0015 13.17c.5-.07 1-.11 1.58-.11h.02c.93 0 1.95.12 3.06.37a7.788 7.788 0 01-3.24 4.99zM12 19.8c-1.74 0-3.34-.57-4.64-1.54.28-.45.87-1.32 1.82-2.22.96-.93 2.32-1.89 4.05-2.46.59 1.67 1.13 3.57 1.54 5.71-.86.33-1.77.51-2.77.51zm6.13-12.62a7.823 7.823 0 011.66 4.45 15.32 15.32 0 00-3.19-.35h-.01c-.8 0-1.55.07-2.26.19l-.027-.067c-.16-.395-.313-.774-.493-1.143 1.58-.69 3.09-1.68 4.32-3.08z"
fill-rule="evenodd"
></path></svg></a
><a
class="navbar__nav-icon-link"
href="https://www.instagram.com/tu2music/"
rel="noopener noreferrer"
target="_blank"
aria-label="Github"
><svg
aria-hidden="true"
height="24"
viewBox="0 0 24 24"
width="24"
class="icon navbar__nav-icon"
>
<path
d="M12 2C6.477 2 2 6.477 2 12c0 4.42 2.87 8.17 6.84 9.5.5.08.66-.23.66-.5v-1.69c-2.77.6-3.36-1.34-3.36-1.34-.46-1.16-1.11-1.47-1.11-1.47-.91-.62.07-.6.07-.6 1 .07 1.53 1.03 1.53 1.03.87 1.52 2.34 1.07 2.91.83.09-.65.35-1.09.63-1.34-2.22-.25-4.55-1.11-4.55-4.92 0-1.11.38-2 1.03-2.71-.1-.25-.45-1.29.1-2.64 0 0 .84-.27 2.75 1.02.79-.22 1.65-.33 2.5-.33.85 0 1.71.11 2.5.33 1.91-1.29 2.75-1.02 2.75-1.02.55 1.35.2 2.39.1 2.64.65.71 1.03 1.6 1.03 2.71 0 3.82-2.34 4.66-4.57 4.91.36.31.69.92.69 1.85V21c0 .27.16.59.67.5C19.14 20.16 22 16.42 22 12A10 10 0 0012 2z"
></path></svg
></a>
</div>
</nav>
</header>
<main class="app" id="MainContent" tabindex="-1">
<div class="app__page app__page--entered">
<div class="home">
<section
aria-labelledby="intro-title"
class="section intro"
id="intro"
tabindex="-1"
>
<header class="intro__text">
<h1 class="intro__name intro__name--exited" id="intro-title">
<span class="decoder-text"
><span
class="visually-hidden decoder-text__label visually-hidden--hidden"
>Mohnish Landge</span
><span class="decoder-text__content" aria-hidden="true"
><span class="decoder-text__glyph">ニ</span
><span class="decoder-text__glyph">プ</span
><span class="decoder-text__glyph">ノ</span
><span class="decoder-text__glyph">ユ</span
><span class="decoder-text__glyph">ペ</span
><span class="decoder-text__glyph">レ</span
><span class="decoder-text__glyph">ユ</span
><span class="decoder-text__glyph">ヒ</span
><span class="decoder-text__glyph">ピ</span
><span class="decoder-text__glyph">サ</span
><span class="decoder-text__glyph">ロ</span
><span class="decoder-text__glyph">リ</span
><span class="decoder-text__glyph">ゲ</span
><span class="decoder-text__glyph">コ</span></span
></span
>
</h1>
<h2
class="intro__title heading heading--align-auto heading--level-0 heading--weight-medium"
>
<span
class="visually-hidden intro__title-label visually-hidden--hidden"
>Creator + Music, Photo, Video, Art, Science, and
Engineering</span
><span
class="intro__title-row intro__title-row--hidden"
aria-hidden="true"
><span
class="intro__title-word intro__title-word--exited"
style="--delay: 200ms"
>Tu2</span
><span
class="intro__title-line intro__title-line--exited"
></span></span
><span class="intro__title-row intro__title-row--hidden"
><span
class="intro__title-word intro__title-word--plus intro__title-word--entering"
aria-hidden="true"
style="--delay: 600ms"
>Music</span
></span
>
</h2>
</header>
<div
class="intro__mobile-scroll-indicator intro__mobile-scroll-indicator--exited"
>
<svg
aria-hidden="true"
height="15"
viewBox="0 0 43 15"
width="43"
stroke="currentColor"
>
<path
d="M1 1l20.5 12L42 1"
fill="none"
stroke-width="2"
></path>
</svg>
</div>
</section>
<section
aria-labelledby="project-1-title"
class="section project-summary"
id="project-1"
tabindex="-1"
>
<div class="project-summary__content">
<div class="project-summary__preview">
<svg
aria-hidden="true"
height="137"
viewBox="0 0 750 137"
width="750"
class="project-summary__svg project-summary__svg--laptop project-summary__svg--exited"
fill="currentColor"
style="--opacity: 1"
>
<path
d="M113.904 33.552l-.288 1.152a18.13 18.13 0 0 1-.432 1.44l-.864 3.744c-11.808 46.224-36.864 75.312-82.656 95.76-4.752-9.648-8.784-15.12-18.144-24.192 38.304-11.952 64.224-37.44 72.432-70.992H23.76c-15.264.144-18.72.288-23.76.864v-25.92c5.472.864 9.504 1.152 24.192 1.152h73.44c.432-8.928 7.344-15.552 16.128-15.552 9.072 0 16.272 7.2 16.272 16.272s-7.056 16.128-16.128 16.272zm-.144-24.48c-4.464 0-8.208 3.744-8.208 8.208 0 4.32 3.744 8.064 8.208 8.064s8.208-3.744 8.208-8.064c0-4.464-3.744-8.208-8.208-8.208zm104.528 111.024h-61.776v9.936h-26.208c.864-7.92 1.152-12.816 1.152-23.472V32.544c0-6.192-.144-10.656-.576-16.56 5.04.432 7.92.576 17.424.576h77.616c8.928 0 11.088 0 17.856-.576-.288 5.04-.432 10.224-.432 16.992v73.008c0 11.088.288 18 1.008 23.76h-26.064v-9.648zm0-23.04V39.6h-61.776v57.456h61.776zm45.776-68.688L276.88 7.92c15.84 5.76 31.392 12.96 41.328 19.008L305.392 48.96C292 40.032 276.88 32.544 264.064 28.368zm73.008-16.992l14.256-4.752c5.04 6.624 9.36 14.688 12.672 22.896l-14.256 5.184c-3.888-9.504-7.488-16.272-12.672-23.328zm-84.24 52.416L266.08 43.2c15.408 6.048 28.944 12.816 40.176 20.448l-12.24 22.608c-10.368-8.064-26.496-16.848-41.184-22.464zM357.808 4.608L371.344 0c4.752 6.048 8.784 12.816 12.816 22.176l-13.824 5.04c-4.032-9.504-7.776-16.272-12.528-22.608zm-93.6 128.88l-7.2-27.36c12.672 0 30.96-3.888 44.352-9.216 26.928-10.656 45.936-31.824 56.16-62.928 6.912 7.776 13.536 13.392 21.168 18C360.4 97.2 327.712 121.968 274.432 131.04c-5.04 1.008-7.344 1.584-10.224 2.448zM449.952 64.8v42.912h22.464c9.216 0 13.68-.144 19.44-.864v21.888c-5.184-.432-9.216-.576-19.44-.576h-66.96c-10.512 0-12.672 0-19.584.576v-21.888c5.328.72 8.928.864 19.44.864h21.6V64.8h-13.248c-9.504 0-12.528.144-18.72.72V43.488c5.616.72 9.936 1.008 18.576 1.008h50.256c9.216 0 13.248-.288 18.864-1.008V65.52c-4.032-.432-9.936-.72-18.864-.72h-13.824zm97.472-62.064l27.216 4.896c-.72 1.296-1.008 1.728-1.728 3.6-.288.432-.576 1.296-1.008 2.16-.576 1.44-1.008 2.448-1.296 3.024-1.872 4.176-1.872 4.176-2.88 6.192l36.144-.432c5.616 0 7.2-.288 10.656-1.584L626.48 32.4c-1.728 2.88-2.16 3.744-4.176 10.224-7.344 23.904-17.136 42.624-29.808 57.024C579.392 114.624 563.12 126 539.504 136.8c-4.752-9.216-9.216-14.832-17.28-21.888 20.448-7.488 35.424-16.704 48.096-29.376 10.656-10.8 18.72-24.336 24.048-40.896l-38.304.432c-9.36 14.832-19.008 25.344-32.688 36.144-7.344-8.352-10.944-11.52-20.448-17.28 17.568-12.384 28.944-25.488 38.304-43.92 3.744-7.488 5.472-12.24 6.192-17.28zm137.936 130.32h-27.792c.576-6.48.864-10.656.864-22.032V27.216c0-11.664-.144-13.104-1.008-20.88h27.792c-.576 4.176-.72 11.376-.72 21.024v19.728c24.48 8.064 43.056 16.56 65.52 29.952l-13.68 24.48c-13.968-9.648-30.96-19.008-45.36-25.056-5.04-2.016-5.04-2.016-6.48-2.88v37.44c0 9.648.288 16.848.864 22.032z"
></path>
</svg>
<div
class="model project-summary__model project-summary__model--laptop"
style="--delay: 800ms"
aria-label="Smart Sparrow lesson builder"
role="img"
>
<canvas
class="model__canvas"
height="1008"
style="width: 604px; height: 504px"
width="1208"
></canvas>
</div>
</div>
<div class="project-summary__details">
<div class="project-summary__index" aria-hidden="true">
<div
class="divider"
style="
--lineWidth: 100%;
--lineHeight: 2px;
--notchWidth: 64px;
--notchHeight: 8px;
--collapseDelay: 1000ms;
"
>
<div class="divider__line divider__line--collapsed"></div>
<div
class="divider__notch divider__notch--collapsed"
style="--collapseDelay: 1160ms"
></div>
</div>
<span
class="project-summary__index-number project-summary__index-number--exited"
>01</span
>
</div>
<h2
class="project-summary__title project-summary__title--exited heading heading--align-auto heading--level-3 heading--weight-medium"
id="project-1-title"
>
About Tu2
</h2>
<p
class="project-summary__description project-summary__description--exited text text--align-auto text--size-m text--weight-auto"
>
Tu2 is the musical alias of Mohnish Landge, I'm a India
based multi-genre producer who's been experimenting with
music since 5+ years.
</p>
<div
class="project-summary__button project-summary__button--exited"
>
<a
class="button"
href="https://mohnishlandge.wtf/"
rel="noopener noreferrer"
target="_blank"
><span class="button__text">Personal Website</span
><svg
aria-hidden="true"
height="24"
viewBox="0 0 24 24"
width="24"
class="icon button__icon button__icon--end button__icon--shift"
>
<path
d="M14.207 4.793l6.5 6.5.707.707-.707.707-6.5 6.5-1.414-1.414L17.586 13H3v-2h14.586l-4.793-4.793 1.414-1.414z"
></path></svg
></a>
</div>
</div>
</div>
</section>
<section
aria-labelledby="project-2-title"
class="section project-summary project-summary--alternate"
id="project-2"
tabindex="-1"
>
<div class="project-summary__content">
<div class="project-summary__preview">
<svg
aria-hidden="true"
height="137"
viewBox="0 0 750 137"
width="750"
class="project-summary__svg project-summary__svg--phone project-summary__svg--exited"
fill="currentColor"
style="--opacity: 1"
>
<path
d="M113.904 33.552l-.288 1.152a18.13 18.13 0 0 1-.432 1.44l-.864 3.744c-11.808 46.224-36.864 75.312-82.656 95.76-4.752-9.648-8.784-15.12-18.144-24.192 38.304-11.952 64.224-37.44 72.432-70.992H23.76c-15.264.144-18.72.288-23.76.864v-25.92c5.472.864 9.504 1.152 24.192 1.152h73.44c.432-8.928 7.344-15.552 16.128-15.552 9.072 0 16.272 7.2 16.272 16.272s-7.056 16.128-16.128 16.272zm-.144-24.48c-4.464 0-8.208 3.744-8.208 8.208 0 4.32 3.744 8.064 8.208 8.064s8.208-3.744 8.208-8.064c0-4.464-3.744-8.208-8.208-8.208zm104.528 111.024h-61.776v9.936h-26.208c.864-7.92 1.152-12.816 1.152-23.472V32.544c0-6.192-.144-10.656-.576-16.56 5.04.432 7.92.576 17.424.576h77.616c8.928 0 11.088 0 17.856-.576-.288 5.04-.432 10.224-.432 16.992v73.008c0 11.088.288 18 1.008 23.76h-26.064v-9.648zm0-23.04V39.6h-61.776v57.456h61.776zm45.776-68.688L276.88 7.92c15.84 5.76 31.392 12.96 41.328 19.008L305.392 48.96C292 40.032 276.88 32.544 264.064 28.368zm73.008-16.992l14.256-4.752c5.04 6.624 9.36 14.688 12.672 22.896l-14.256 5.184c-3.888-9.504-7.488-16.272-12.672-23.328zm-84.24 52.416L266.08 43.2c15.408 6.048 28.944 12.816 40.176 20.448l-12.24 22.608c-10.368-8.064-26.496-16.848-41.184-22.464zM357.808 4.608L371.344 0c4.752 6.048 8.784 12.816 12.816 22.176l-13.824 5.04c-4.032-9.504-7.776-16.272-12.528-22.608zm-93.6 128.88l-7.2-27.36c12.672 0 30.96-3.888 44.352-9.216 26.928-10.656 45.936-31.824 56.16-62.928 6.912 7.776 13.536 13.392 21.168 18C360.4 97.2 327.712 121.968 274.432 131.04c-5.04 1.008-7.344 1.584-10.224 2.448zM449.952 64.8v42.912h22.464c9.216 0 13.68-.144 19.44-.864v21.888c-5.184-.432-9.216-.576-19.44-.576h-66.96c-10.512 0-12.672 0-19.584.576v-21.888c5.328.72 8.928.864 19.44.864h21.6V64.8h-13.248c-9.504 0-12.528.144-18.72.72V43.488c5.616.72 9.936 1.008 18.576 1.008h50.256c9.216 0 13.248-.288 18.864-1.008V65.52c-4.032-.432-9.936-.72-18.864-.72h-13.824zm97.472-62.064l27.216 4.896c-.72 1.296-1.008 1.728-1.728 3.6-.288.432-.576 1.296-1.008 2.16-.576 1.44-1.008 2.448-1.296 3.024-1.872 4.176-1.872 4.176-2.88 6.192l36.144-.432c5.616 0 7.2-.288 10.656-1.584L626.48 32.4c-1.728 2.88-2.16 3.744-4.176 10.224-7.344 23.904-17.136 42.624-29.808 57.024C579.392 114.624 563.12 126 539.504 136.8c-4.752-9.216-9.216-14.832-17.28-21.888 20.448-7.488 35.424-16.704 48.096-29.376 10.656-10.8 18.72-24.336 24.048-40.896l-38.304.432c-9.36 14.832-19.008 25.344-32.688 36.144-7.344-8.352-10.944-11.52-20.448-17.28 17.568-12.384 28.944-25.488 38.304-43.92 3.744-7.488 5.472-12.24 6.192-17.28zm137.936 130.32h-27.792c.576-6.48.864-10.656.864-22.032V27.216c0-11.664-.144-13.104-1.008-20.88h27.792c-.576 4.176-.72 11.376-.72 21.024v19.728c24.48 8.064 43.056 16.56 65.52 29.952l-13.68 24.48c-13.968-9.648-30.96-19.008-45.36-25.056-5.04-2.016-5.04-2.016-6.48-2.88v37.44c0 9.648.288 16.848.864 22.032z"
></path>
</svg>
<div
class="model project-summary__model project-summary__model--phone"
style="--delay: 500ms"
aria-label="App login screen"
role="img"
>
<canvas
class="model__canvas"
height="1334"
style="width: 466px; height: 667px"
width="932"
></canvas>
</div>
</div>
<div class="project-summary__details">
<div class="project-summary__index" aria-hidden="true">
<div
class="divider"
style="
--lineWidth: 100%;
--lineHeight: 2px;
--notchWidth: 64px;
--notchHeight: 8px;
--collapseDelay: 1000ms;
"
>
<div class="divider__line divider__line--collapsed"></div>
<div
class="divider__notch divider__notch--collapsed"
style="--collapseDelay: 1160ms"
></div>
</div>
<span
class="project-summary__index-number project-summary__index-number--exited"
>02</span
>
</div>
<h2
class="project-summary__title project-summary__title--exited heading heading--align-auto heading--level-3 heading--weight-medium"
id="project-2-title"
>
My Music
</h2>
<p
class="project-summary__description project-summary__description--exited text text--align-auto text--size-m text--weight-auto"
>
I draw most of my inspiration from the melodic & emotional
era of electronic music, I have deep passion for songwriting
which is reflected in my music.
</p>
<div
class="project-summary__button project-summary__button--exited"
>
<a
class="button"
href="https://open.spotify.com/track/1G41vWmkU1ghUrQYl1Uhdd"
rel="noopener noreferrer"
target="_blank"
><span class="button__text">Listen Now!</span
><svg
aria-hidden="true"
height="24"
viewBox="0 0 24 24"
width="24"
class="icon button__icon button__icon--end button__icon--shift"
>
<path
d="M14.207 4.793l6.5 6.5.707.707-.707.707-6.5 6.5-1.414-1.414L17.586 13H3v-2h14.586l-4.793-4.793 1.414-1.414z"
></path></svg
></a>
</div>
</div>
</div>
</section>
<section
aria-labelledby="project-3-title"
class="section project-summary"
id="project-3"
tabindex="-1"
>
<div class="project-summary__content">
<div class="project-summary__preview">
<svg
aria-hidden="true"
height="137"
viewBox="0 0 750 137"
width="750"
class="project-summary__svg project-summary__svg--laptop project-summary__svg--exited"
fill="currentColor"
style="--opacity: 1"
>
<path
d="M113.904 33.552l-.288 1.152a18.13 18.13 0 0 1-.432 1.44l-.864 3.744c-11.808 46.224-36.864 75.312-82.656 95.76-4.752-9.648-8.784-15.12-18.144-24.192 38.304-11.952 64.224-37.44 72.432-70.992H23.76c-15.264.144-18.72.288-23.76.864v-25.92c5.472.864 9.504 1.152 24.192 1.152h73.44c.432-8.928 7.344-15.552 16.128-15.552 9.072 0 16.272 7.2 16.272 16.272s-7.056 16.128-16.128 16.272zm-.144-24.48c-4.464 0-8.208 3.744-8.208 8.208 0 4.32 3.744 8.064 8.208 8.064s8.208-3.744 8.208-8.064c0-4.464-3.744-8.208-8.208-8.208zm104.528 111.024h-61.776v9.936h-26.208c.864-7.92 1.152-12.816 1.152-23.472V32.544c0-6.192-.144-10.656-.576-16.56 5.04.432 7.92.576 17.424.576h77.616c8.928 0 11.088 0 17.856-.576-.288 5.04-.432 10.224-.432 16.992v73.008c0 11.088.288 18 1.008 23.76h-26.064v-9.648zm0-23.04V39.6h-61.776v57.456h61.776zm45.776-68.688L276.88 7.92c15.84 5.76 31.392 12.96 41.328 19.008L305.392 48.96C292 40.032 276.88 32.544 264.064 28.368zm73.008-16.992l14.256-4.752c5.04 6.624 9.36 14.688 12.672 22.896l-14.256 5.184c-3.888-9.504-7.488-16.272-12.672-23.328zm-84.24 52.416L266.08 43.2c15.408 6.048 28.944 12.816 40.176 20.448l-12.24 22.608c-10.368-8.064-26.496-16.848-41.184-22.464zM357.808 4.608L371.344 0c4.752 6.048 8.784 12.816 12.816 22.176l-13.824 5.04c-4.032-9.504-7.776-16.272-12.528-22.608zm-93.6 128.88l-7.2-27.36c12.672 0 30.96-3.888 44.352-9.216 26.928-10.656 45.936-31.824 56.16-62.928 6.912 7.776 13.536 13.392 21.168 18C360.4 97.2 327.712 121.968 274.432 131.04c-5.04 1.008-7.344 1.584-10.224 2.448zM449.952 64.8v42.912h22.464c9.216 0 13.68-.144 19.44-.864v21.888c-5.184-.432-9.216-.576-19.44-.576h-66.96c-10.512 0-12.672 0-19.584.576v-21.888c5.328.72 8.928.864 19.44.864h21.6V64.8h-13.248c-9.504 0-12.528.144-18.72.72V43.488c5.616.72 9.936 1.008 18.576 1.008h50.256c9.216 0 13.248-.288 18.864-1.008V65.52c-4.032-.432-9.936-.72-18.864-.72h-13.824zm97.472-62.064l27.216 4.896c-.72 1.296-1.008 1.728-1.728 3.6-.288.432-.576 1.296-1.008 2.16-.576 1.44-1.008 2.448-1.296 3.024-1.872 4.176-1.872 4.176-2.88 6.192l36.144-.432c5.616 0 7.2-.288 10.656-1.584L626.48 32.4c-1.728 2.88-2.16 3.744-4.176 10.224-7.344 23.904-17.136 42.624-29.808 57.024C579.392 114.624 563.12 126 539.504 136.8c-4.752-9.216-9.216-14.832-17.28-21.888 20.448-7.488 35.424-16.704 48.096-29.376 10.656-10.8 18.72-24.336 24.048-40.896l-38.304.432c-9.36 14.832-19.008 25.344-32.688 36.144-7.344-8.352-10.944-11.52-20.448-17.28 17.568-12.384 28.944-25.488 38.304-43.92 3.744-7.488 5.472-12.24 6.192-17.28zm137.936 130.32h-27.792c.576-6.48.864-10.656.864-22.032V27.216c0-11.664-.144-13.104-1.008-20.88h27.792c-.576 4.176-.72 11.376-.72 21.024v19.728c24.48 8.064 43.056 16.56 65.52 29.952l-13.68 24.48c-13.968-9.648-30.96-19.008-45.36-25.056-5.04-2.016-5.04-2.016-6.48-2.88v37.44c0 9.648.288 16.848.864 22.032z"
></path>
</svg>
<div
class="model project-summary__model project-summary__model--laptop"
style="--delay: 800ms"
aria-label="Annotating a biomedical image in the Slice app"
role="img"
>
<canvas
class="model__canvas"
height="1008"
style="width: 604px; height: 504px"
width="1208"
></canvas>
</div>
</div>
<div class="project-summary__details">
<div class="project-summary__index" aria-hidden="true">
<div
class="divider"
style="
--lineWidth: 100%;
--lineHeight: 2px;
--notchWidth: 64px;
--notchHeight: 8px;
--collapseDelay: 1000ms;
"
>
<div class="divider__line divider__line--collapsed"></div>
<div
class="divider__notch divider__notch--collapsed"
style="--collapseDelay: 1160ms"
></div>
</div>
<span
class="project-summary__index-number project-summary__index-number--exited"
>03</span
>
</div>
<h2
class="project-summary__title project-summary__title--exited heading heading--align-auto heading--level-3 heading--weight-medium"
id="project-3-title"
>
Music Production
</h2>
<p
class="project-summary__description project-summary__description--exited text text--align-auto text--size-m text--weight-auto"
>
I do my best to contribute to the EDM community by music
leases & sound packs. Check out one below.
</p>
<div
class="project-summary__button project-summary__button--exited"
>
<a
class="button"
href="https://www.beatstars.com/tu2/feed"
rel="noopener noreferrer"
target="_blank"
><span class="button__text">FREE Projects & Sounds</span
><svg
aria-hidden="true"
height="24"
viewBox="0 0 24 24"
width="24"
class="icon button__icon button__icon--end button__icon--shift"
>
<path
d="M14.207 4.793l6.5 6.5.707.707-.707.707-6.5 6.5-1.414-1.414L17.586 13H3v-2h14.586l-4.793-4.793 1.414-1.414z"
></path></svg
></a>
</div>
</div>
</div>
</section>
<section
aria-labelledby="details-title"
class="section profile"
id="details"
tabindex="-1"
>
<div class="profile__content">
<div class="profile__column">
<h3
class="profile__title profile__title--exited heading heading--align-auto heading--level-3 heading--weight-medium"
id="details-title"
>
<span class="decoder-text"
><span
class="visually-hidden decoder-text__label visually-hidden--hidden"
>Hi there</span
><span class="decoder-text__content" aria-hidden="true"
><span class="decoder-text__glyph">ロ</span
><span class="decoder-text__glyph">シ</span
><span class="decoder-text__glyph">ゼ</span
><span class="decoder-text__glyph">ゼ</span
><span class="decoder-text__glyph">ダ</span
><span class="decoder-text__glyph">ヰ</span
><span class="decoder-text__glyph">レ</span
><span class="decoder-text__glyph">カ</span></span
></span
>
</h3>
<p
class="profile__description profile__description--exited text text--align-auto text--size-l text--weight-auto"
>
Tu2 is the musical alias of Mohnish Landge, a India based
multi-genre producer who's been experimenting with music
since his early adolescent years. Drawing most of his
inspiration from the melodic & emotional era of electronic
music, Tu2's deep passion for songwriting is driven in his
song.
</p>
<p
class="profile__description profile__description--exited text text--align-auto text--size-l text--weight-auto"
>
In my spare time I like to read books, travel, and
<a
class="link"
href="https://www.behance.net/mohnishlandge"
rel="noreferrer noopener"
target="_blank"
>make art</a
>. I’m always down for hearing about new projects, so feel
free to drop me a line.
</p>
<a
class="button profile__button profile__button--exited button--secondary"
href="/contact"
><svg
aria-hidden="true"
height="24"
viewBox="0 0 24 24"
width="24"
class="icon button__icon button__icon--start"
>
<path
d="M2.01 21L23 12 2.01 3 2 10l15 2-15 2 .01 7z"
></path></svg
><span class="button__text">Send me a message</span></a
>
</div>
<div class="profile__column">
<div class="profile__tag" aria-hidden="true">
<div
class="divider"
style="
--lineWidth: 100%;
--lineHeight: 2px;
--notchWidth: 64px;
--notchHeight: 8px;
--collapseDelay: 1000ms;
"
>
<div class="divider__line divider__line--collapsed"></div>
<div
class="divider__notch divider__notch--collapsed"
style="--collapseDelay: 1160ms"
></div>
</div>
<div class="profile__tag-text profile__tag-text--exited">
About Me
</div>
</div>
<div class="profile__image-wrapper">
<div
class="image image--dark image--reveal"
style="--delay: 100ms"
>
<div
class="image__element-wrapper image__element-wrapper--reveal"
style="--delay: 1100ms"
>
<img
alt="Me standing in front of the Torii on Miyajima, an island off the coast of Hiroshima in Japan"
class="image__element"
decoding="async"
height="504"
width="432"
sizes="(max-width: 696px) 100vw, 480px"
/><img
alt=""
class="image__placeholder"
decoding="async"
height="504"
width="432"
aria-hidden="true"
role="presentation"
src="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAkGBggGBQkIBwgKCQkKDRYODQwMDRoTFBAWHxwhIB8cHh4jJzIqIyUvJR4eKzssLzM1ODg4ISo9QTw2QTI3ODX/2wBDAQkKCg0LDRkODhk1JB4kNTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTU1NTX/wgARCAAOAAwDAREAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABAX/xAAXAQADAQAAAAAAAAAAAAAAAAABAgQD/9oADAMBAAIQAxAAAACm+aiJ0VCWX//EAB0QAAICAQUAAAAAAAAAAAAAAAIDAAQVBQYxUmL/2gAIAQEAAT8Aqbqe0iWUzTe0XpIjYMhLmYz3P//EABkRAAMAAwAAAAAAAAAAAAAAAAABAgMTIf/aAAgBAgEBPwB0yHw3MWc//8QAGBEAAgMAAAAAAAAAAAAAAAAAAAECERP/2gAIAQMBAT8AikSqzIxP/9k="
style="--delay: 100ms"
/>
</div>
</div>
<svg
aria-hidden="true"
height="765"
viewBox="0 0 135 765"
width="135"
class="profile__svg profile__svg--exited"
fill="currentColor"
>
<path
d="M32.544 651.088l1.152.288c.576.144 1.008.288 1.44.432l3.744.864c46.224 11.808 75.312 36.864 95.76 82.656-9.648 4.752-15.12 8.784-24.192 18.144-11.952-38.304-37.44-64.224-70.992-72.432v60.192c.144 15.264.288 18.72.864 23.76H14.4c.864-5.472 1.152-9.504 1.152-24.192v-73.44C6.624 666.928 0 660.016 0 651.232c0-9.072 7.2-16.272 16.272-16.272s16.128 7.056 16.272 16.128zm-24.48.144c0 4.464 3.744 8.208 8.208 8.208 4.32 0 8.064-3.744 8.064-8.208s-3.744-8.208-8.064-8.208c-4.464 0-8.208 3.744-8.208 8.208zm111.024-104.528v61.776h9.936v26.208c-7.92-.864-12.816-1.152-23.472-1.152H31.536c-6.192 0-10.656.144-16.56.576.432-5.04.576-7.92.576-17.424v-77.616c0-8.928 0-11.088-.576-17.856 5.04.288 10.224.432 16.992.432h73.008c11.088 0 18-.288 23.76-1.008v26.064h-9.648zm-23.04 0H38.592v61.776h57.456v-61.776zM12.96 403.44l12.528-12.96c2.448 1.584 3.168 1.872 8.064 3.024 26.784 6.48 44.784 15.12 61.2 28.944 15.984 13.392 27.504 29.52 39.168 54.864-10.944 5.616-14.832 8.64-24.192 18.144-6.768-20.736-15.552-35.856-28.224-48.528-12.24-12.096-25.344-19.44-42.624-23.904v59.76c0 13.968.144 16.56.864 24.192H13.68c1.008-6.192 1.152-10.512 1.152-24.624v-68.4c0-4.752-.432-7.344-1.872-10.512zm13.968-106.112l13.824-20.16c1.584 1.872 1.584 1.872 5.04 5.04 8.64 7.776 16.272 16.56 23.472 26.64h44.352c9.36 0 14.688-.144 19.872-.864v25.632c-5.616-.72-9.36-1.008-19.872-1.008H83.52c7.344 12.24 9.36 16.848 16.992 37.584-7.92 3.168-13.392 6.48-20.448 12.24-6.192-22.176-15.12-41.328-27.36-58.32-8.784-12.24-18.432-22.32-25.776-26.784zm55.584-35.264H54.72c1.008-6.768 1.296-14.544 1.296-29.52v-68.832c0-14.4-.288-19.872-1.296-29.52h27.792c-.72 6.912-.864 13.248-.864 29.664V232.4c0 16.128.144 20.88.864 29.664zM8.352 113.76l1.584-27.216c4.896.576 4.896.576 33.408 1.584 30.096.864 46.08 3.744 61.776 10.656 10.656 4.752 18.432 10.224 28.8 20.016-9.648 7.344-13.68 11.376-20.16 20.592-7.344-8.208-13.392-12.672-22.896-17.136-14.112-6.768-31.968-9.072-69.264-9.072-6.336 0-9.504.144-13.248.576zm-.72-40.896V45.792c5.904.864 8.208 1.008 16.704 1.152l75.456.72c-4.896-7.776-9.072-12.384-15.84-17.28-7.344-5.184-14.832-8.64-24.624-11.232C68.256 11.952 72 8.208 78.336 0c16.128 6.48 27.216 13.968 36.576 24.912 7.344 8.64 11.088 15.696 16.416 30.24 1.44 4.032 1.872 5.184 3.024 7.056l-12.96 12.384c-3.744-1.296-6.192-1.584-12.096-1.584l-85.248-.72h-5.184c-4.608 0-7.776.144-11.232.576z"
></path>
</svg>
</div>
</div>
</div>
</section>
<footer class="footer">
<span class="footer__date">© 2020 Mohnish Landge.</span
><a
class="link footer__link link--secondary"
href="https://www.mohnishlandge.me/"
rel="noreferrer noopener"
target="_blank"
>Crafted by yours truly</a
>
</footer>
</div>
</div>
</main>
</div>
<script>
!(function (e) {
function t(t) {
for (
var n, o, u = t[0], f = t[1], i = t[2], d = 0, s = [];
d < u.length;
d++
)
(o = u[d]),
Object.prototype.hasOwnProperty.call(a, o) &&
a[o] &&
s.push(a[o][0]),
(a[o] = 0);
for (n in f)
Object.prototype.hasOwnProperty.call(f, n) && (e[n] = f[n]);
for (l && l(t); s.length; ) s.shift()();
return c.push.apply(c, i || []), r();
}
function r() {
for (var e, t = 0; t < c.length; t++) {
for (var r = c[t], n = !0, o = 1; o < r.length; o++) {
var f = r[o];
0 !== a[f] && (n = !1);
}
n && (c.splice(t--, 1), (e = u((u.s = r[0]))));
}
return e;
}
var n = {},
o = { 5: 0 },
a = { 5: 0 },
c = [];
function u(t) {
if (n[t]) return n[t].exports;
var r = (n[t] = { i: t, l: !1, exports: {} });
return e[t].call(r.exports, r, r.exports, u), (r.l = !0), r.exports;
}
(u.e = function (e) {
var t = [];
o[e]
? t.push(o[e])
: 0 !== o[e] &&
{
1: 1,
6: 1,
7: 1,
9: 1,
10: 1,
11: 1,
12: 1,
13: 1,
14: 1,
15: 1,
16: 1,
}[e] &&
t.push(
(o[e] = new Promise(function (t, r) {
for (
var n =
"static/css/" +
({}[e] || e) +
"." +
{
0: "31d6cfe0",
1: "9cc9e478",
2: "31d6cfe0",
3: "31d6cfe0",
6: "9cabfbaa",
7: "df6e5305",
9: "c016dcd1",
10: "82fd6898",
11: "dd92d404",
12: "eb9be16f",
13: "85d86bf6",
14: "b0fab7e3",
15: "5e40f8c0",
16: "78fc1905",
17: "31d6cfe0",
18: "31d6cfe0",
}[e] +
".chunk.css",
a = u.p + n,
c = document.getElementsByTagName("link"),
f = 0;
f < c.length;
f++
) {
var i =
(l = c[f]).getAttribute("data-href") ||
l.getAttribute("href");
if ("stylesheet" === l.rel && (i === n || i === a))
return t();
}
var d = document.getElementsByTagName("style");
for (f = 0; f < d.length; f++) {
var l;
if (
(i = (l = d[f]).getAttribute("data-href")) === n ||
i === a
)
return t();
}
var s = document.createElement("link");
(s.rel = "stylesheet"),
(s.type = "text/css"),
(s.onload = t),
(s.onerror = function (t) {
var n = (t && t.target && t.target.src) || a,
c = new Error(
"Loading CSS chunk " + e + " failed.\n(" + n + ")"
);
(c.code = "CSS_CHUNK_LOAD_FAILED"),
(c.request = n),
delete o[e],
s.parentNode.removeChild(s),
r(c);
}),