-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathux.html
979 lines (761 loc) · 34.1 KB
/
ux.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UX raghav prasanna</title>
<meta property="og:description"
content="Hey! I’m Raghav, Product designer. 1 person with an all-in-one production ability" />
<meta content="https://i.imgur.com/4Sz5x1Z.png" property="og:image">
<meta property="og:type" content="website" />
<meta name="twitter:card" content="https://i.imgur.com/4Sz5x1Z.png" />
<meta name="twitter:title" content="Select portfolio" />
<meta name="twitter:description"
content="Hey! I’m Raghav, Product designer. 1 person with an all-in-one production ability" />
<meta name="twitter:image" content="https://i.imgur.com/4Sz5x1Z.png" />
<!-- Fonts -->
<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=Archivo:ital,wght@0,100..900;1,100..900&family=Bebas+Neue&family=Calistoga&family=DotGothic16&family=Instrument+Serif:ital@0;1&family=Maiden+Orange&family=Pixelify+Sans:[email protected]&family=Staatliches&display=swap"
rel="stylesheet">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<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=Onest:[email protected]&display=swap" rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<!-- GSAP and ScrollTrigger -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.3/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.3/ScrollTrigger.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.css">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<!--
Barlow Semi Condensed
Maiden Orange
Staatliches
Pixelify Sans
DotGothic16
Instrument Serif
Bebas Neue
Archivo
fallsend
Onest
-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="ux.css">
<script src="ux.js"></script>
<!-- Add this script to ux.html, gamedes.html, and any other pages where you want the sound to play on load -->
<script>
window.addEventListener('DOMContentLoaded', () => {
// Create an audio object
const pageLoadSound = new Audio('threeD/sfx-accent-eye-glitter-tinkle-1-6342.mp3');
// Play the sound
pageLoadSound.play().catch(error => {
console.log('Sound play prevented by browser autoplay policy:', error);
});
});
</script>
<!-- Logo and bar color -->
<link rel="icon" href="logo.png" type="png">
<meta name="theme-color" content="#ff3f3f">
</head>
<!-- navbar and the logo pc-->
<header>
<nav class="navtext navbar fixed-top nodispmob" data-aos="fade-down" data-aos-duration="1000" data-aos-delay="50"
data-aos-once="true">
<div class="custom-container">
<div class="row" style="align-content: center;">
<div class="col-2 " style="text-align: start; margin-top: 1.9%">
<a href="ux.html">
<img src="images/DEDROX.DSGN/dedroxLogo.svg"
style="width: 40px; height: auto; z-index: 100; transform: rotate(-10deg);">
</a>
</div>
<div class="col-8 black-link" style="margin-top: 20px">
<a href="freefonts.html" class="s-t">FREE FONTS /</a>
<a href="articlepage.html" class="w-t">ARTICLES /</a>
<a href="gamedes.html" target="_blank" class="d-t">3D & GAME-DESIGN /</a>
</div>
<div class="col-2 " style="text-align: end; margin-top: 20px">
<a href="threeD/CV_RESUME-RAGHAV.pdf" target="_blank" class="a-t"> ->RESUME*</a>
</div>
</div>
</div>
</nav>
<div class="blurtop"></div>
</header>
<!-- navbar and the logo mobile-->
<header data-aos="fade-down" data-aos-duration="1000" data-aos-delay="50" data-aos-once="true">
<div class="red-top-bar dispmob">--| This website is best viewed on a PC |--</div>
</nav>
<nav class="navtext navbar fixed-top dispmob">
<div class="custom-container">
<div class="row" style="align-content: center;">
<div class="col-2" style="align-content: center;">
<a href="ux.html">
<img src="images/DEDROX.DSGN/dedroxLogo.svg" style="width: 30px;">
</a>
</div>
<div class="col-6 black-link" style="align-content: center;">
<a href="gamedes.html" target="_blank" class="d-t">3D & GAME-DESIGN*</a>
</div>
<div class="col-4" style="align-content: center;">
<a href="threeD/CV_RESUME-RAGHAV.pdf" target="_blank" class="a-t"> ->RESUME*</a>
</div>
</div>
</div>
</nav>
</header>
<body>
<!-- DEDROX.DESGN HEE! -->
<div class="logosec" data-aos="fade-down" data-aos-duration="700" data-aos-delay="500" data-aos-once="true">
<div class="sticker" id="sticker1">
<img src="images/lessgoo.png">
</div>
<div class="sticker" id="sticker2">
<img src="images/londonuk.png">
</div>
<div class="sticker" id="sticker2.1">
<img src="images/yesthatme.png">
</div>
<div class="sticker" id="sticker3.9">
<img src="images/meee.png">
</div>
<div class="sticker" id="sticker3">
<img src="images/since.png">
</div>
<script>
const clickableImages = document.querySelectorAll('#sticker1');
const targetDivs = document.querySelectorAll('#pagesecshort');
clickableImages.forEach((image, index) => {
image.addEventListener('click', () => {
targetDivs[index].scrollIntoView({ behavior: 'smooth' });
});
});
</script>
<div id="logo" class="d-flex justify-content-center align-items-center"> </div>
</div>
<!-- About me -->
<div id="pagesecshort" data-aos="fade-top" data-aos-duration="2000" data-aos-once="false">
<div class="custom-container">
<div class="sticker" id="sticker3.1">
<img src="images/cat.png">
</div>
<div class="sticker" id="stickerBannerAd2">
<img src="images/body.png">
</div>
<div class="sticker" id="stickerBannerAd3">
<img src="images/head.png">
</div>
<div class="sticker" id="stickerBannerAd1">
<img src="images/ba2.png">
</div>
<!-- <div style="max-width: 60%; @media (max-width: 480px) { max-width: 90%; }"> -->
<div class="heyhiraghav">
<span style="color: #5a5a5a;">Hey, Hi! I’m </span>
<span style="color: #2a2a2a;">Raghav.</span>
<span style="color: #5a5a5a;">Mid level </span>
<span style="color: #2a2a2a;">Digital product designer </span>
<span style="color: #5a5a5a;">based in London with a background in </span>
<span style="color: #2a2a2a;">game mechanics.</span>
</div>
</div>
<div class="custom-container" style="font-size: 23px; padding-top: 10px;">
<a href="https://www.behance.net/raghavprasanna" target="_blank"
style="padding-right: 20px; color: #686868;">Behance </a>
<a href="https://dribbble.com/DEDROX2K" target="_blank" style="padding-right: 20px; color: #686868;">Dribble</a>
<a href="https://www.linkedin.com/in/raghav-prasanna-b530621b0/recent-activity/all/" target="_blank"
style="padding-right: 20px; color: #686868;">linkedIn</a>
<a href="https://www.artstation.com/raghavprasanna" target="_blank"
style="padding-right: 20px; color: #686868;">Artstation</a>
<a href="https://www.fiverr.com/dedrox_?source=gig_cards&referrer_gig_slug=create-a-low-poly-3d-environments-models&ref_ctx_id=fa09f517671c4267b9fda576d680dbc1&imp_id=0cd568ff-3782-465e-a989-2a726dfeea34"
target="_blank" style="padding-right: 20px; color: #686868;">Freelance</a>
</div>
</div>
<!-- Case Study -->
<section class="content-section" id="portfolio">
<h1 class="text-center he1mob" data-aos="fade-top" data-aos-duration="1000" data-aos-once="false"> Case Studies
</h1>
<script>
// JavaScript to handle modal behavior
const modal = document.getElementById('caseStudyModal');
const openModal = document.getElementById('openModal');
// Show modal when the link is clicked
openModal.addEventListener('click', function (event) {
event.preventDefault(); // Prevent default link behavior
modal.style.display = 'flex'; // Show the modal
});
// Close modal when clicking outside the modal content
modal.addEventListener('click', function (event) {
if (event.target === modal) {
modal.style.display = 'none'; // Hide the modal
}
});
</script>
<section id="portfoliooo" data-aos="fade-top" data-aos-duration="700" data-aos-once="false">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-12 col-lg-8 mb-4"> <a href="Case1.html">
<div class="card" style="background-color: #e4e4e4; border: solid 2px #e8e8e8;">
<div class="image-container">
<img src="images/port1.jpg" alt="Portfolio Item" class="img-fluid">
</div>
<div class="card-body">
<h5 class="card-title" style="color: #000000;"><span
style=" margin-top: 1rem; font-weight: 700; ">Summary:
</span> App
to assist addicts in quitting smoking by integrating Cognitive Behavioral Therapy (CBT)
techniques.
</h5>
<h5 class="card-title" style="color: #000000; margin-bottom: 1rem;"> <span
style=" font-weight: 700;">Problem
solved: </span>
Made the app 3X more
efficient and quicker than the
competitors. Reducing the user flow for logging a cigarette from 7 steps to just 3, making it
quicker and more user-friendly.
</h5>
<!-- <p class="indicator-highli " style="margin: 0% 7%;">Mobile application</p> -->
<!-- <h5 class="card-title"><span style="color:#5b7e31; margin-top: 1rem;">Value added: </span> Integrated
Cognitive
Behavioral Therapy (CBT) system to make the habbit ease off quicker
</h5> -->
</div>
</div>
</a>
</div>
</div>
</div>
</section>
<section id="portfoliooo" data-aos="fade-top" data-aos-duration="700" data-aos-once="false">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-12 col-lg-8
mb-4"> <a href="Case2.html">
<div class="card" style="background-color: #e4e4e4; border: solid 2px #e8e8e8;">
<div class="image-container">
<img src="images/port2.jpg" alt="Portfolio Item" class="img-fluid">
</div>
<div class="card-body">
<h5 class="card-title" style="color: #000000;"><span
style=" margin-top: 1rem; font-weight: 700;">Summary:
</span> App
AR app designed to simplify navigation in complex airports and enhance the travel experience.
</h5>
<h5 class="card-title" style="color: #000000; margin-bottom: 1rem;"> <span
style=" font-weight: 700;">Value added: </span>
The app also acts as a people finder, enabling users to locate children or elderly family members,
enhancing both convenience and safety while improving the overall travel experience. </h5>
</div>
</div>
</a>
</div>
</div>
</div>
</section>
<section id="portfoliooo" data-aos="fade-top" data-aos-duration="700" data-aos-once="false">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-12 col-lg-8 mb-4"><a target="_blank"
href="https://medium.com/@RaghavPrasannaUX/practical-use-cases-of-gamification-b8c659743168">
<div class="card" style="background-color: #e4e4e4; border: solid 2px #e8e8e8;">
<div class="image-container">
<img src="images/port4.jpg" alt="Portfolio Item" class="img-fluid">
</div>
<div class="card-body">
<h5 class="card-title" style="color: #000000; margin-bottom: 1rem;"> <span
style=" font-weight: 700;">Summary: </span> An article showcasing how gamification can be
effectively integrated into existing or newly
developed apps.
</h5>
<h5 class="card-title" style="color: #000000; margin-bottom: 1rem;"> <span
style=" font-weight: 700;">Value added: </span>
This project serves as an example of how we could implement gamification into existing or newly
developing apps. In a practical sense.
</h5>
</div>
</div>
</a>
</div>
</div>
</div>
</section>
<!-- <section id="portfoliooo" data-aos="fade-top" data-aos-duration="700" data-aos-once="false">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-12 col-lg-9 mb-4"><a target="_blank"
href="https://medium.com/@RaghavPrasannaUX/case-study-gym-finder-app-3ac05a38abe3">
<div class="card" style="background-color: #C8FD01;">
<div class="image-container">
<img src="images/port3.jpg" alt="Portfolio Item" class="img-fluid">
</div>
<div class="card-body">
<h5 class="card-title">An app for those who travel a lot and someone who wants to try different gyms
and
trainee easily without getting into a subscription trap.</h5>
<p class="card-text text-muted">Case study</p>
</div>
</div>
</a>
</div>
</div>
</div>
</section> -->
<style>
#portfoliooo .card {
border-radius: 18px;
padding: 10px;
transition: filter 0.5s ease, transform 0.2s;
transform: translateY(0);
border: none;
}
#portfoliooo .card img {
border-radius: 8px;
object-fit: cover;
width: 100%;
aspect-ratio: 16 / 9;
}
.card:hover {
/* border: 1px solid black; */
transform: translateY(-6px);
box-shadow: 0 0 10px 0 rgba(78, 91, 110, 0.1);
cursor: url('linkcursor.png'), pointer;
}
#portfoliooo .card-body {
text-align: center;
padding: 4%;
}
/* ... other styles ... */
#portfoliooo .card-title {
font-size: 1.3rem;
margin-top: 1.1rem;
margin-bottom: 0.1rem;
font-family: Onest;
text-align: left;
}
#portfoliooo .card-text {
font-size: 1rem;
font-family: Onest;
font-weight: 600;
margin-bottom: 0.6rem;
}
/* Maintain aspect ratio */
.image-container {
aspect-ratio: 1080 / 430;
overflow: hidden;
display: block;
}
.image-container img {
width: 100%;
height: 100%;
object-fit: cover;
}
</style>
</section>
<!-- Tiles Portfolio-->
<section class="content-section" id="portfolio" data-aos="fade-top" data-aos-duration="1000" data-aos-once="false">
<h1 class="text-center nodispmob" style="margin-top: 10rem;" data-aos="fade-top" data-aos-duration="2000"
data-aos-once="true"> More & More Projects!
<div class="custom-container" style="font-size: 23px; padding-top: 10px; ">
<a href="https://www.behance.net/raghavprasanna" target="_blank"
style="padding-right: 20px; color: #686868; font-family: onest;">Behance </a>
<a href="https://dribbble.com/DEDROX2K" target="_blank"
style="padding-right: 20px; color: #686868; font-family: onest;">Dribble</a>
</div>
</h1>
<div class="container px-4 px-lg-5 nodispmob">
<div class="row gx-0">
<div class="col-lg-4">
<a class="portfolio-item text-center"
href="https://www.behance.net/gallery/209743653/AR-AIRPORT-NAVIGATION-Case-study" target="_blank">
<img class="img-fluid" src="images/portpie 1.png" />
<p class="indicator-highli " style="margin: 0% 7%;">Case study</p>
<p style="padding: 0% 7%;
" class="mb-0">AR application to navigate airports</p>
</a>
</div>
<div class="col-lg-4">
<a class="portfolio-item text-center"
href="https://www.behance.net/gallery/200529521/CLEAR-BREATH-case-study-No-smoking-app" target="_blank">
<img class="img-fluid" src="images/portpie 2.png" />
<p class="indicator-highli" style="margin: 0% 7%;">Case study</p>
<p style="padding: 0% 7%;
" class="mb-0">Detailed project on tackling smoking addiction</p>
</a>
</div>
<div class="col-lg-4">
<a class="portfolio-item text-center"
href="https://medium.com/@RaghavPrasannaUX/case-study-gym-finder-app-3ac05a38abe3" target="_blank">
<img class="img-fluid" src="images/portpie 3.png" />
<p class="indicator-highli" style="margin: 0% 7%;">mini Case study</p>
<p style="padding: 0% 7%;
" class="mb-0">App designed for those who travel a lot and wants a quick gym sessions</p>
</a>
</div>
</div>
<div class="row gx-0">
<div class="col-lg-4">
<a class="portfolio-item text-center" href="https://dribbble.com/DEDROX2K" target="_blank">
<img class="img-fluid" src="images/portpie 4.png" />
<p class="indicator-highli" style="margin: 0% 7%;">CASE STUDY</p>
<p style="padding: 0% 7%;
" class="mb-0">3D UI interfaces</p>
</a>
</div>
<div class="col-lg-4">
<a class="portfolio-item text-center" href="https://dribbble.com/shots/22200518-UI-screen-practices"
target="_blank">
<img class="img-fluid" src="images/portpie 5.png" />
<p class="indicator-highli" style="margin: 0% 7%;">App UI</p>
<p style="padding: 0% 7%;
" class="mb-0">Sets of UI designs explorations</p>
</a>
</div>
<div class="col-lg-4">
<a class="portfolio-item text-center"
href="https://www.behance.net/gallery/184315285/Currency-Converter-app-Case-Study" target="_blank">
<img class="img-fluid" src="images/portpie 6.png" />
<p class="indicator-highli" style="margin: 0% 7%;">Mini case study</p>
<p style="padding: 0% 7%;
" class="mb-0">Simple, currency calculator</p>
</a>
</div>
</div>
<div class="row gx-0">
<div class="col-lg-4">
<a class="portfolio-item text-center"
href="https://www.behance.net/gallery/175170719/Dashboard-design-UI-Mondaycom-redesign" target="_blank">
<img class="img-fluid" src="images/portpie 7.png" />
<p class="indicator-highli" style="margin: 0% 7%;">Web UI</p>
<p style="padding: 0% 7%;
" class="mb-0">Dashboard re-design Monday.com</p>
</a>
</div>
<div class="col-lg-4">
<a class="portfolio-item text-center"
href="https://dribbble.com/shots/24985083-Portfolio-Mobile-website-design-03" target="_blank">
<img class="img-fluid" src="images/portpie 8.png" />
<p class="indicator-highli" style="margin: 0% 7%;">App UI</p>
<p style="padding: 0% 7%;
" class="mb-0">Sets of UI designs explorations</p>
</a>
</div>
<div class="col-lg-4">
<a class="portfolio-item text-center" href="https://dribbble.com/shots/24985076-Portfolio-website-design-02"
target="_blank">
<img class="img-fluid" src="images/portpie 9.png" />
<p class="indicator-highli" style="margin: 0% 7%;">Web UI</p>
<p style="padding: 0% 7%;
" class="mb-0">Sets of UI designs explorations</p>
</a>
</div>
</div>
</div>
</section>
<!-- Coreporate experience paragraph -->
<!-- <div id="pagesecshort2" data-aos="fade-bottom" data-aos-duration="1000" data-aos-once="false">
<div class="custom-container">
<div>
<span style="color: #5a5a5a;">As a person who is obsessed with the world of design and 3D! <br /></span>
<span style="color: #5a5a5a;"><br />I
initially started off as a </span>
<span style="color: black;">game designer & 3D artist.</span>
<span style="color: #5a5a5a;">
Since 2018, I’ve expanded into various markets, creating custom designs and helping </span>
<span style="color: black;">35+
clients</span>
<span style="color: #5a5a5a;">
develop applications, software, and games.</span>
</div>
</div>
</div> -->
<!-- Experience list
<h1 class="text-center he1mob nodispmob" style=" padding: 20% 0% 0% 0%;" data-aos="fade-top"
data-aos-duration="1000" data-aos-once="false">My experience </h1>
<div class="custom-container experience-section" data-aos="fade-top" data-aos-duration="1000" data-aos-once="false">
<div class="sticker" id="sticker3.8">
<img src="images/lasupdate.png">
</div>
<div class="sticker" id="sticker8">
<img src="images/me.png">
</div>
<div class="row mb-3">
<div class="col-md-8 job-title"> Product Designer </div>
<div class="col-md-4 text-md-right">October - Current · 3 Months</div>
<p class="w-100" style="font-weight: 800;">Opendatabay · Internship <span style="font-weight: 500;">(London,
UK ·
Remote)</span></p>
</div>
<div class="row mb-3">
<div class="col-md-8 job-title"> Designer</div>
<div class="col-md-4 text-md-right">Apr 2024 - Jun 2024 · 3 mos</div>
<p class="w-100" style="font-weight: 800;">Noun Town · Part-time
<span style="font-weight: 500;">(London,
UK ·
Remote)</span>
</p>
</div>
<div class="row mb-3">
<div class="col-md-8 job-title"> Creative Designer</div>
<div class="col-md-4 text-md-right">Jun 2022 - Nov 2023 · 1 yr 6 mos</div>
<p class="w-100" style="font-weight: 800;">LeagueX · Full-time
<span style="font-weight: 500;">(Bangalore · On-site)</span>
</p>
</div>
<div class="row mb-3">
<div class="col-md-8 job-title"> Junior 3D Artist/generalist</div>
<div class="col-md-4 text-md-right">Feb 2022 - Jun 2022 · 5 mos</div>
<p class="w-100" style="font-weight: 800;">Do. Creative · Internship
<span style="font-weight: 500;">(Bangalore · On-site)</span>
</p>
</div>
<div class="row mb-3">
<div class="col-md-8 job-title"> Design Generalist </div>
<div class="col-md-4 text-md-right">From 2019 - 2023 · 5+ yrs</div>
<p class="w-100" style="font-weight: 800;">Fiverr · Freelance <span style="font-weight: 500;">(Remote)</span></p>
<p class="w-50" style="padding-left: 2%;">From my early teen I started my freelancing journey. <a
href="https://youtu.be/fWZTuIvpyEE?si=1042FWnZJR-SoBrK">Click here! </a>to see
the
profile</p>
</div>
</div> -->
<!-- Fiverr image -->
<a class="justify-content-center align-items-center nodispmob" data-aos="fade-top" data-aos-duration="1000"
data-aos-once="false" target="_blank" class="fivbanner"
href="https://www.fiverr.com/dedrox_?source=gig_cards&referrer_gig_slug=create-a-low-poly-3d-environments-models&ref_ctx_id=fa09f517671c4267b9fda576d680dbc1&imp_id=0cd568ff-3782-465e-a989-2a726dfeea34">
<img class="fivbanner" style="width: 100%; height: auto; display: block; margin-top: 17%;" src="images/allrevs.png">
</a>
<!-- <a class="d-flex justify-content-center align-items-center" target="_blank"
href="https://www.fiverr.com/dedrox_?up_rollout=true">
<img class="fadeemg" style="width: 50%; height: auto; transform: rotate(2deg);" src="images/fiveestats.jpg">
</a> -->
<!-- Puzzle -->
<div id="puzzle" class="nodispmob" data-aos="fade-top" data-aos-duration="4000" data-aos-once="false"
data-aos-delay="100">
<div class="redbox d-flex justify-content-center align-items-center" style="z-index: 998;">
</div>
<div class="sticker" id="sticker6">
<img src="images/uxdes.png">
</div>
<div class="sticker" id="sticker7">
<img src="images/prod.png">
</div>
<div class="sticker" id="sticker5">
<img src="images/gamedesign.png">
</div>
<div class="sticker" id="sticker4">
<img src="images/frontend.png">
</div>
</div>
<!-- Free fonts -->
<div id="pagesecshort2" data-aos="fade-top" data-aos-duration="1000" data-aos-once="false" data-aos-delay="100">
<div class="custom-container">
<span style="color: #5a5a5a;">
I don't want you to leave empty handed. Here you can </span>
<span style="color: black;">get some free fonts.</span>
</div>
<a vibrantcursor data-aos="fade-top" data-aos-duration="1000" data-aos-once="false" data-aos-delay="100"
href="freefonts.html">
<img class="downcur" style="padding: 0% 0% 10% 20%;" src="images/font-download.png"> </a>
</div>
<!-- Consultation button -->
<!-- <div id="pagesec4" data-aos="fade-top" data-aos-duration="1000" data-aos-once="false" data-aos-delay="100">
<div class="consu nodispmob">
<div class="custom-container text-center consutex" style="padding-top: 0%; margin-bottom: 30px;">
<span style="font-family: Instrument Serif; font-weight: 700;">Have an idea? Let's talk. I'm currently
interested
in projects related to games, softwares, packaging to plugins. <br>
</div>
<a href="index.html">
<div class="consubtn mx-auto text-center" style="letter-spacing: 0.1rem;">
SEND ME A QUICK MESSAGE
</div>
</a>
</div>
<div class="sticker" id="sticker2.2">
<img src="images/ba3.png">
</div>
<div class="sticker" id="sticker14">
<img src="images/me.png">
</div>
</div>-->
<div class="blur-box" style="
height: 110px;
opacity: 90%;
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: none; backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); user-select: none; pointer-events: none;
background: rgba(225, 225, 225, 0.05);
mask-image: linear-gradient(rgb(255 255 255 / 0%) 0%, rgb(223 223 223) 100%, rgb(255 255 255 / 0%) 50%);">
</div>
<button class="summary" style="z-index: 100;"><a href="compressed.html">About me</a></button>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>AOS.init();</script>
</body>
<!-- Footer -->
<footer class="footer" style="margin-top: 1%;">
<div class="sticker" id="stickerBannerAd5">
<img src="images/ba4.png">
</div>
<div class="sticker" id="sticker9">
<img src="images/ba1.png">
</div>
<div class="sticker" id="sticker10">
<img src="images/ba8.png">
</div>
<div class="sticker" id="stickerBannerAd4">
<img src="images/ba3.png">
</div>
<div class="sticker" id="sticker11">
<img src="images/ba2.png">
</div>
<div class="sticker" id="sticker12">
<img src="images/ba5.png">
</div>
<div class="sticker" id="sticker13">
<img src="images/flow5.png">
</div>
<div class="container">
<div class="row">
<div class="col-md-6">
<h3>Contact Me</h3>
<p> <a href="https://www.linkedin.com/in/raghav-prasanna-b530621b0/"
target="_blank">linkedin.com/raghav-prasanna</a><br>
+44 7553 433334<br>
</p>
</div>
<div class="col-md-6">
<h3 style="text-align: end;">Follow Me</h3>
<ul class="list-inline" style="text-align: end;">
<li><a href="https://www.behance.net/raghavprasanna" target="_blank">Behance</a></li>
<li><a href="https://www.artstation.com/raghavprasanna" target="_blank">Artstation</a></li>
<li><a href="https://www.instagram.com/dedrox__/?hl=en" target="_blank">Instagram</a></li>
<li><a href="https://medium.com/@RaghavPrasannaUX" target="_blank">Medium</a></li>
<li><a href="https://www.youtube.com/@dedrox3d491/videos" target="_blank">Youtube</a></li>
<li><a href="https://codepen.io/Raghav-Prasanna-Lakshminarayanan" target="_blank">Codepen</a></li>
<li><a href="https://dribbble.com/DEDROX2K" target="_blank">Dribbble</a></li>
<li><a href="https://letterboxd.com/dedrox/films/reviews/" target="_blank">Letterboxd</a></li>
<li><a href="https://www.instagram.com/raghavprasanna_photography/?hl=en" target="_blank">Photography</a></li>
<li><a href="https://sketchfab.com/Raghavprasanna" target="_blank">Sketchfab</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-12">
<!-- <img src="images/footerhand.png" alt="Footer Image" class="image"
style="padding-top: 50px; z-index: 100; opacity: 85%; pointer-events: none;">
<img src="images/footerhand2.png" alt="Footer Image" class="image hidden"
style="padding-top: 50px; z-index: 100; opacity: 85%; pointer-events: none;"> -->
<img src="images/footerhand.png" alt="Footer Image" class="img-fluid"
style="padding-top: 50px; z-index: 100; opacity: 85%; pointer-events: none;">
</div>
</div>
</div>
</footer>
<style>
footer h3 {
font-family: Onest;
font-weight: 800;
font-size: 30px;
color: #424242;
}
footer p {
font-family: Onest;
font-size: 20px;
font-weight: 500;
color: #424242;
}
.footer a {
color: #424242;
border-bottom: none;
text-decoration: none;
border-bottom: #424242 solid;
letter-spacing: 0.3px;
font-size: 25px;
font-weight: 400;
transition: letter-spacing 0.8s;
font-family: vcr;
}
.footer a :hover {
color: #5e5e5e;
transition: 0.5s;
letter-spacing: -1px;
transition: 0.5s;
border: solid #000000;
}
footer {
padding-top: 80px;
background-color: rgb(240, 240, 240);
border-top: solid #424242 3px;
}
</style>
<!-- GSAP SCROLL CLR CHANGE -->
<!-- <script>
gsap.registerPlugin(ScrollTrigger);
// Define the common options for all animations
const commonOptions = {
toggleActions: "play none none reverse", // Change back to original color when scrolling back
markers: true, // Debug markers
immediateRender: false, // Ensures CSS initial color is not overwritten
};
// Start with body having a white background color (CSS handles initial color)
gsap.to("body", {
backgroundColor: "#47C6FC", // Yellow when reaching the second div
scrollTrigger: {
trigger: "#pagesec1", // Trigger the color change on the second section
start: "top center", // Change color when the top of the second section reaches the center of the viewport
end: "bottom center",
// scrub: true,
duration: 0.1, // Faster transition // Continue this color until the second section leaves the viewport
...commonOptions,
},
});
// Revert to white background when going back to the first div
gsap.to("body", {
backgroundColor: "#46BE73", // White when back on the home page (first div)
scrollTrigger: {
trigger: "#pagesec2", // Trigger the color change based on the first section
start: "top center", // Change back when the top of the first section reaches the center of the viewport
end: "bottom center", // Continue white color until the first section leaves the viewport
// scrub: true,
duration: 0.1, // Faster transition // Continue this color until the second section leaves the viewport
...commonOptions,
},
});
// Revert to white background when going back to the first div
gsap.to("body", {
backgroundColor: "#E86AA6", // White when back on the home page (first div)
scrollTrigger: {
trigger: "#pagesec3", // Trigger the color change based on the first section
start: "top center", // Change back when the top of the first section reaches the center of the viewport
end: "bottom center", // Continue white color until the first section leaves the viewport
// scrub: true,
duration: 0.1, // Faster transition // Continue this color until the second section leaves the viewport
...commonOptions,
},
});
gsap.registerPlugin(ScrollTrigger);
let footer = document.querySelector("footer"),
getOverlap = () => Math.min(window.innerHeight, footer.offsetHeight), // we never want it to overlap more than the height of the screen
adjustFooterOverlap = () => footer.style.marginTop = -getOverlap() + "px"; // adjusts the margin-top of the footer to overlap the proper amount
adjustFooterOverlap();
// to make it responsive, re-calculate the margin-top on the footer when the ScrollTriggers revert
ScrollTrigger.addEventListener("revert", adjustFooterOverlap);
// magic
ScrollTrigger.create({
trigger: footer,
start: () => "top " + (window.innerHeight - getOverlap()),
end: () => "+=" + getOverlap(),
pin: true,
});
</script> -->
</html>