-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1014 lines (1000 loc) · 55.6 KB
/
Copy pathindex.html
File metadata and controls
1014 lines (1000 loc) · 55.6 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-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Incy</title>
<meta name="description" content="Incy's Portfolio">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="shortcut icon" type="image/x-icon" href="images/avatars/avatar-1.png">
<!-- STYLESHEETS -->
<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css" media="all">
<link rel="stylesheet" href="css/all.min.css" type="text/css" media="all">
<link rel="stylesheet" href="css/simple-line-icons.css" type="text/css" media="all">
<link rel="stylesheet" href="css/slick.css" type="text/css" media="all">
<link rel="stylesheet" href="css/animate.css" type="text/css" media="all">
<link rel="stylesheet" href="css/magnific-popup.css" type="text/css" media="all">
<link rel="stylesheet" href="css/style.css" type="text/css" media="all">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body class="dark">
<!-- Preloader -->
<div id="preloader">
<div class="outer">
<!-- Google Chrome -->
<div class="infinityChrome">
<div></div>
<div></div>
<div></div>
</div>
<!-- Safari and others -->
<div class="infinity">
<div>
<span></span>
</div>
<div>
<span></span>
</div>
<div>
<span></span>
</div>
</div>
<!-- Stuff -->
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" class="goo-outer">
<defs>
<filter id="goo">
<feGaussianBlur in="SourceGraphic" stdDeviation="6" result="blur" />
<feColorMatrix in="blur" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 18 -7" result="goo" />
<feBlend in="SourceGraphic" in2="goo" />
</filter>
</defs>
</svg>
</div>
</div>
<!-- desktop header -->
<header class="desktop-header-3 fixed-top">
<div class="container">
<nav class="navbar navbar-expand-lg navbar-dark">
<a class="navbar-brand" href="index.html"><img src="images/Incy_Logo_No_Background.png" alt="Incy" width="30%" /></a> <button aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation" class="navbar-toggler" data-target="#navbarNavDropdown" data-toggle="collapse" type="button"><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav ml-auto scrollspy">
<li class="nav-item"><a class="nav-link" href="#home">Home</a></li>
<li class="nav-item"><a href="#about" class="nav-link">About</a></li>
<li class="nav-item"><a href="#services" class="nav-link">Skills</a></li>
<li class="nav-item"><a href="#experience" class="nav-link">Education</a></li>
<li class="nav-item"><a href="#works" class="nav-link">Works</a></li>
<li class="nav-item"><a href="#prices" class="nav-link">Pricing</a></li>
<li class="nav-item"><a href="#contact" class="nav-link">Contact</a></li>
</ul>
</div>
</nav>
</div>
</header>
<!-- main layout -->
<main class="content-3">
<!-- section home -->
<section id="home" class="home d-flex align-items-center">
<div class="container">
<!-- intro -->
<div class="intro">
<!-- avatar image -->
<img src="images/avatars/avatar-1.png" alt="Sparsh" class="mb-4" width="24%" />
<!-- info -->
<h1 class="mb-2 mt-0">Sparsh</h1>
<span>I'm a <span class="text-rotating">Game Designer, Front-End Developer, Tech Enthusiast, Innovator</span></span>
<!-- social icons -->
<ul class="social-icons light list-inline mb-0 mt-4">
<li class="list-inline-item"><a href="https://www.linkedin.com/in/sparsh-860951213/"><i class="fab fa-linkedin"></i></a></li>
<li class="list-inline-item"><a href="https://github.com/IncyBot"><i class="fab fa-github"></i></a></li>
<li class="list-inline-item"><a href="https://twitter.com/ItsIncy"><i class="fab fa-twitter"></i></a></li>
<li class="list-inline-item"><a href="mailto:incybot@gmail.com"><i class="fas fa-envelope-square"></i></a></li>
</ul>
<!-- buttons -->
<div class="mt-4">
<a href="#contact" class="btn btn-default">Contact me</a>
</div>
</div>
<!-- scroll down mouse wheel -->
<div class="scroll-down">
<a href="#about" class="mouse-wrapper">
<span>Scroll Down</span>
<span class="mouse">
<span class="wheel"></span>
</span>
</a>
</div>
<!-- parallax layers -->
<div class="parallax" data-relative-input="true">
<svg width="27" height="29" data-depth="0.3" class="layer p1" xmlns="http://www.w3.org/2000/svg"><path d="M21.15625.60099c4.37954 3.67487 6.46544 9.40612 5.47254 15.03526-.9929 5.62915-4.91339 10.30141-10.2846 12.25672-5.37122 1.9553-11.3776.89631-15.75715-2.77856l2.05692-2.45134c3.50315 2.93948 8.3087 3.78663 12.60572 2.22284 4.297-1.5638 7.43381-5.30209 8.22768-9.80537.79387-4.50328-.8749-9.08872-4.37803-12.02821L21.15625.60099z" fill="#FFD15C" fill-rule="evenodd"/></svg>
<svg width="26" height="26" data-depth="0.2" class="layer p2" xmlns="http://www.w3.org/2000/svg"><path d="M13 3.3541L2.42705 24.5h21.1459L13 3.3541z" stroke="#FF4C60" stroke-width="3" fill="none" fill-rule="evenodd"/></svg>
<svg width="30" height="25" data-depth="0.3" class="layer p3" xmlns="http://www.w3.org/2000/svg"><path d="M.1436 8.9282C3.00213 3.97706 8.2841.92763 14.00013.92796c5.71605.00032 10.9981 3.04992 13.85641 8 2.8583 4.95007 2.8584 11.0491-.00014 16.00024l-2.77128-1.6c2.28651-3.96036 2.28631-8.84002.00011-12.8002-2.2862-3.96017-6.5124-6.40017-11.08513-6.4-4.57271.00018-8.79872 2.43984-11.08524 6.4002l-2.77128-1.6z" fill="#44D7B6" fill-rule="evenodd"/></svg>
<svg width="15" height="23" data-depth="0.6" class="layer p4" xmlns="http://www.w3.org/2000/svg"><rect transform="rotate(30 9.86603 10.13397)" x="7" width="3" height="25" rx="1.5" fill="#FFD15C" fill-rule="evenodd"/></svg>
<svg width="15" height="23" data-depth="0.2" class="layer p5" xmlns="http://www.w3.org/2000/svg"><rect transform="rotate(30 9.86603 10.13397)" x="7" width="3" height="25" rx="1.5" fill="#6C6CE5" fill-rule="evenodd"/></svg>
<svg width="49" height="17" data-depth="0.5" class="layer p6" xmlns="http://www.w3.org/2000/svg"><g fill="#FF4C60" fill-rule="evenodd"><path d="M.5 16.5c0-5.71709 2.3825-10.99895 6.25-13.8567 3.8675-2.85774 8.6325-2.85774 12.5 0C23.1175 5.50106 25.5 10.78292 25.5 16.5H23c0-4.57303-1.90625-8.79884-5-11.08535-3.09375-2.28652-6.90625-2.28652-10 0C4.90625 7.70116 3 11.92697 3 16.5H.5z"/><path d="M23.5 16.5c0-5.71709 2.3825-10.99895 6.25-13.8567 3.8675-2.85774 8.6325-2.85774 12.5 0C46.1175 5.50106 48.5 10.78292 48.5 16.5H46c0-4.57303-1.90625-8.79884-5-11.08535-3.09375-2.28652-6.90625-2.28652-10 0-3.09375 2.28651-5 6.51232-5 11.08535h-2.5z"/></g></svg>
<svg width="26" height="26" data-depth="0.4" class="layer p7" xmlns="http://www.w3.org/2000/svg"><path d="M13 22.6459L2.42705 1.5h21.1459L13 22.6459z" stroke="#FFD15C" stroke-width="3" fill="none" fill-rule="evenodd"/></svg>
<svg width="19" height="21" data-depth="0.3" class="layer p8" xmlns="http://www.w3.org/2000/svg"><rect transform="rotate(-40 6.25252 10.12626)" x="7" width="3" height="25" rx="1.5" fill="#6C6CE5" fill-rule="evenodd"/></svg>
<svg width="30" height="25" data-depth="0.3" data-depth-y="-1.30" class="layer p9" xmlns="http://www.w3.org/2000/svg"><path d="M29.8564 16.0718c-2.85854 4.95114-8.1405 8.00057-13.85654 8.00024-5.71605-.00032-10.9981-3.04992-13.85641-8-2.8583-4.95007-2.8584-11.0491.00014-16.00024l2.77128 1.6c-2.28651 3.96036-2.28631 8.84002-.00011 12.8002 2.2862 3.96017 6.5124 6.40017 11.08513 6.4 4.57271-.00018 8.79872-2.43984 11.08524-6.4002l2.77128 1.6z" fill="#6C6CE5" fill-rule="evenodd"/></svg>
<svg width="47" height="29" data-depth="0.2" class="layer p10" xmlns="http://www.w3.org/2000/svg"><g fill="#44D7B6" fill-rule="evenodd"><path d="M46.78878 17.19094c-1.95535 5.3723-6.00068 9.52077-10.61234 10.8834-4.61167 1.36265-9.0893-.26708-11.74616-4.27524-2.65686-4.00817-3.08917-9.78636-1.13381-15.15866l2.34923.85505c-1.56407 4.29724-1.2181 8.92018.90705 12.12693 2.12514 3.20674 5.70772 4.5107 9.39692 3.4202 3.68921-1.0905 6.92581-4.40949 8.48988-8.70673l2.34923.85505z"/><path d="M25.17585 9.32448c-1.95535 5.3723-6.00068 9.52077-10.61234 10.8834-4.61167 1.36264-9.0893-.26708-11.74616-4.27525C.16049 11.92447-.27182 6.14628 1.68354.77398l2.34923.85505c-1.56407 4.29724-1.2181 8.92018.90705 12.12692 2.12514 3.20675 5.70772 4.5107 9.39692 3.4202 3.68921-1.0905 6.92581-4.40948 8.48988-8.70672l2.34923.85505z"/></g></svg>
<svg width="33" height="20" data-depth="0.5" class="layer p11" xmlns="http://www.w3.org/2000/svg"><path d="M32.36774.34317c.99276 5.63023-1.09332 11.3614-5.47227 15.03536-4.37895 3.67396-10.3855 4.73307-15.75693 2.77837C5.76711 16.2022 1.84665 11.53014.8539 5.8999l3.15139-.55567c.7941 4.50356 3.93083 8.24147 8.22772 9.8056 4.29688 1.56413 9.10275.71673 12.60554-2.2227C28.34133 9.98771 30.01045 5.4024 29.21635.89884l3.15139-.55567z" fill="#FFD15C" fill-rule="evenodd"/></svg>
</div>
</div>
</section>
<!-- section about -->
<section id="about">
<div class="container">
<!-- section title -->
<h2 class="section-title wow fadeInUp">About Me</h2>
<div class="spacer" data-height="60"></div>
<div class="row">
<div class="col-md-3">
<div class="text-center text-md-left">
<!-- avatar image -->
<img src="images/avatars/avatar-2.png" alt="Bolby" width = "70%"/>
</div>
<div class="spacer d-md-none d-lg-none" data-height="30"></div>
</div>
<div class="col-md-9 triangle-left-md triangle-top-sm">
<div class="rounded bg-dark shadow-dark padding-30">
<div class="row">
<div class="col-md-6">
<!-- about text -->
<p align="justify">I'm Sparsh, a passionate developer and innovator, blending creativity and technical skills to drive sustainable change. My journey has led me to create solutions like the Thermal Floater, aiming to democratize renewable energy. I thrive to turn challenges into opportunities, constantly pushing the boundaries in the digital & physical realm.</p>
<div class="mt-3">
<a href="files/Sparsh_Resume_G14.pdf" class="btn btn-default">Download CV</a>
</div>
<div class="spacer d-md-none d-lg-none" data-height="30"></div>
</div>
<div class="col-md-6">
<!-- skill item -->
<div class="skill-item">
<div class="skill-info clearfix">
<h4 class="float-left mb-3 mt-0">Web & Software Development</h4>
<span class="float-right">95%</span>
</div>
<div class="progress">
<div class="progress-bar data-background" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="95" data-color="#FFD15C">
</div>
</div>
<div class="spacer" data-height="20"></div>
</div>
<!-- skill item -->
<div class="skill-item">
<div class="skill-info clearfix">
<h4 class="float-left mb-3 mt-0">Innovation</h4>
<span class="float-right">85%</span>
</div>
<div class="progress">
<div class="progress-bar data-background" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="85" data-color="#FF4C60">
</div>
</div>
<div class="spacer" data-height="20"></div>
</div>
<!-- skill item -->
<div class="skill-item">
<div class="skill-info clearfix">
<h4 class="float-left mb-3 mt-0">3D Modeling</h4>
<span class="float-right">80%</span>
</div>
<div class="progress">
<div class="progress-bar data-background" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="80" data-color="#44d7b5">
</div>
</div>
<div class="spacer" data-height="20"></div>
</div>
<!-- skill item -->
<div class="skill-item">
<div class="skill-info clearfix">
<h4 class="float-left mb-3 mt-0">Game & AI Development</h4>
<span class="float-right">70%</span>
</div>
<div class="progress">
<div class="progress-bar data-background" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="70" data-color="#6C6CE5">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- section services -->
<section id="services">
<div class="container">
<!-- section title -->
<h2 class="section-title wow fadeInUp">Skills</h2>
<div class="spacer" data-height="60"></div>
<div class="row">
<div class="col-md-4">
<!-- service box -->
<div class="service-box rounded data-background padding-30 text-center text-light shadow-blue" data-color="#6C6CE5">
<img src="images/innovation.png" alt="UI/UX web_dev" width = 45% />
<h3 class="mb-3 mt-0">Innovation</h3>
<p class="mb-0">
In my journey of innovation, I've created solutions like Thermal Floater and S.C.A.R.R, addressing real-world challenges with a blend of technology and creativity. My commitment is to meaningful change, underpinned by sustainable, practical designs that resonate with societal needs. Each project, from conceptualizing a sewage management robot to designing a floating energy generator, embodies my philosophy: innovation is not just inventing, but also enhancing lives and safeguarding our environment.
</p>
</div>
<div class="spacer d-md-none d-lg-none" data-height="30"></div>
</div>
<div class="col-md-4">
<!-- service box -->
<div class="service-box rounded data-background padding-30 text-center shadow-yellow" data-color="#FFD05C">
<img src="images/web.png" alt="UI/UX web_dev" width = 45% />
<h3 class="mb-3 mt-0">Web Development</h3>
<p class="mb-0">
Web development is my digital canvas, where each website I create is a unique artistic piece. Passionate about crafting unparalleled digital experiences, I aim to reflect each project I embark on with client's distinct identity and vision in my work. From AI consulting platforms like Alag Labs to innovative projects like Weev.Dev or Montage 2023, each site is imbued with creative details and unique elements, showcasing my dedication to making every project distinctively different and a testament to digital artistry.
</p>
</div>
<div class="spacer d-md-none d-lg-none" data-height="30"></div>
</div>
<div class="col-md-4">
<!-- service box -->
<div class="service-box rounded data-background padding-30 text-center text-light shadow-pink" data-color="#F97B8B">
<img src="images/unity.png" alt="UI/UX web_dev" width = 45% />
<h3 class="mb-3 mt-0">Game Design</h3>
<p class="mb-0">
As a passionate gamer deeply intrigued by the mechanics of gaming, I delve into game development with a focus on humor and creativity. My artistic flair, often cartoonish in style, breathes life into the games I create. By integrating new technologies like AI, I enhance the gaming experience, making each project unique. Utilizing Unity, Game Maker Language, and C#, I've developed games which were recognized in the top ten of the Ludum Dare Game Jam, fueling my commitment to innovative game development.</p>
</div>
</div>
</div>
<div class="mt-5 text-center">
<p class="mb-0">Want more information? <a href="#contact">Click here</a> to contact me! 👋</p>
</div>
</div>
</section>
<!-- section experience -->
<section id="experience">
<div class="container">
<!-- section title -->
<h2 class="section-title wow fadeInUp">Experience</h2>
<div class="spacer" data-height="60"></div>
<div class="row">
<div class="col-md-6">
<!-- timeline wrapper -->
<div class="timeline edu bg-dark rounded shadow-dark padding-30 overflow-hidden">
<!-- timeline item -->
<div class="timeline-container wow fadeInUp" data-wow-delay="0.4s">
<div class="content">
<span class="time">2022 - Present</span>
<h3 class="title">Bachelors in Engineering</h3>
<p>Pursuing a BEng at the National University of Singapore, majoring in Computer Engineering with a second major in Innovation and Design Programme & Enrolled in the Honours programme at NUS College.</p>
</div>
</div>
<!-- timeline item -->
<div class="timeline-container wow fadeInUp" data-wow-delay="0.4s">
<div class="content">
<span class="time">2010 - 2022</span>
<h3 class="title">All India Senior School Certificate</h3>
<p>
Secured 94% in the All India Senior School Certificate Examination with specialization in Physics, Chemistry, Mathematics, & Computer Science, showcasing strong academic proficiency. Recognized for outstanding innovations & development skills by professors, and Excelled in Olympiads with multiple 1st places in National Science, Cyber, International English and Maths, and International Social Science.</p>
</div>
</div>
<!-- main line -->
<span class="line"></span>
</div>
</div>
<div class="col-md-6">
<!-- responsive spacer -->
<div class="spacer d-md-none d-lg-none" data-height="30"></div>
<!-- timeline wrapper -->
<div class="timeline exp bg-dark rounded shadow-dark padding-30 overflow-hidden">
<!-- timeline item -->
<div class="timeline-container wow fadeInUp" data-wow-delay="0.4s">
<div class="content">
<span class="time">2021 - Present</span>
<h3 class="title">Freelance</h3>
<p>
Contributed to a broad range of freelance work in Web Development, UI/UX Design, Logo Design, App Development, AI Solutions, Graphic Design, Animation, & 3D modeling. My portfolio includes work for clients like Keychron, SinoLion Capital, & NUS Photographic Society, with additional significant & confedential projects completed on platforms such as Freelancer and Fiverr.
</p>
</div>
</div>
<!-- timeline item -->
<div class="timeline-container wow fadeInUp" data-wow-delay="0.4s">
<div class="content">
<span class="time">2019 - 2022</span>
<h3 class="title">Student Mentor</h3>
<p>
Mentored at Zero2Maker and Radiant International School, where I adeptly guided students in mastering Design Thinking, IoT, CAD modeling, innovative Prototyping, and fostering creative Innovation.
</p>
</div>
</div>
<!-- main line -->
<span class="line"></span>
</div>
</div>
</div>
</div>
</section>
<!-- section works -->
<section id="works">
<div class="container">
<!-- section title -->
<h2 class="section-title wow fadeInUp">Recent Works</h2>
<div class="spacer" data-height="60"></div>
<!-- portfolio filter (desktop) -->
<ul class="portfolio-filter list-inline wow fadeInUp">
<li class="current list-inline-item" data-filter="*">Everything</li>
<li class="list-inline-item" data-filter=".achievements">Achievements</li>
<li class="list-inline-item" data-filter=".innovation">Innovations</li>
<li class="list-inline-item" data-filter=".web_dev">Web Development</li>
<li class="list-inline-item" data-filter=".game_dev">Game Development</li>
<li class="list-inline-item" data-filter=".ai_dev">AI Development</li>
</ul>
<!-- portfolio filter (mobile) -->
<div class="pf-filter-wrapper">
<select class="portfolio-filter-mobile wow fadeInUp">
<option value="*">Everything</option>
<option value=".achievements">Achievements</option>
<option value=".innovation">Innovations</option>
<option value=".web_dev">Web Development</option>
<option value=".game_dev">Game Development</option>
<option value=".ai_dev">AI Development</option>
</select>
</div>
<!-- portolio wrapper -->
<div class="row portfolio-wrapper">
<!-- portfolio item -->
<div class="col-md-4 col-sm-6 grid-item innovation">
<a href="https://www.youtube.com/watch?v=Pzd8UwnPWxM" class="work-video">
<div class="portfolio-item rounded shadow-dark">
<div class="details">
<span class="term">Innovation, Animation</span>
<h4 class="title">Thermal Floater Animated Pitch</h4>
<span class="more-button"><i class="icon-camrecorder"></i></span>
</div>
<div class="thumb">
<img src="images\works\tf4.png" alt="Portfolio-title" />
<div class="mask"></div>
</div>
</div>
</a>
</div>
<!-- portfolio item -->
<div class="col-md-4 col-sm-6 grid-item innovation">
<a href="#small-dialog18" class="work-content">
<div class="portfolio-item rounded shadow-dark">
<div class="details">
<span class="term">Innovation, Entrepreneurship</span>
<h4 class="title">Incy Tech: Pitch Deck</h4>
<span class="more-button"><i class="icon-options"></i></span>
</div>
<div class="thumb">
<img src="images/works/incy_tech.png" alt="Portfolio-title" />
<div class="mask"></div>
</div>
</div>
</a>
<div id="small-dialog18" class="white-popup zoom-anim-dialog mfp-hide">
<img src="images\pitch_deck.png" alt="Another" />
<h2>Incy Tech: From Vision to Innovation</h2>
<p>I co-founded the company Incy Tech that provides its users with numerous fabricated innovative solutions to reduce carbon footprint and is backed up by the funding received from the Government of India and multiple investors. Our key innovation, The Thermal Floater, is an environmentally friendly device that converts solar-thermal energy into electricity, providing a cost-effective and land-independent solution to democratize access to renewable energy generation.</p>
<p>November 2023</p>
<a href="files/Pitch_Deck.pptx" target="_blank" class="btn btn-default">Download Pitch Deck</a>
</div>
</div>
<!-- portfolio item -->
<div class="col-md-4 col-sm-6 grid-item game_dev">
<a href="#small-dialog1" class="work-content">
<div class="portfolio-item rounded shadow-dark">
<div class="details">
<span class="term">Game Development</span>
<h4 class="title">Creation Vs Creator</h4>
<span class="more-button"><i class="icon-options"></i></span>
</div>
<div class="thumb">
<img src="images/works/cvc.png" alt="Portfolio-title" />
<div class="mask"></div>
</div>
</div>
</a>
<div id="small-dialog1" class="white-popup zoom-anim-dialog mfp-hide">
<img src="images/cvs.png" alt="Another" />
<h2>Creation Vs Creator</h2>
<p>A game developed by me as a submission for Ludum Dare 47. It is a 2D Platformer where the creation realizes its naive behavior and fights its creator back.</p>
<p>October 2020</p>
<a href="https://www.amazon.in/Inci-Games-Creation-Vs-Creator/dp/B087N9G69Q" target="_blank" class="btn btn-default">View Game</a>
</div>
</div>
<!-- portfolio item -->
<div class="col-md-4 col-sm-6 grid-item innovation achievements">
<a href="#small-dialog17" class="work-content">
<div class="portfolio-item rounded shadow-dark">
<div class="details">
<span class="term">Innovation</span>
<h4 class="title">Thermal Floater: Research Paper</h4>
<span class="more-button"><i class="icon-options"></i></span>
</div>
<div class="thumb">
<img src="images/works/tf3.png" alt="Portfolio-title" />
<div class="mask"></div>
</div>
</div>
</a>
<div id="small-dialog17" class="white-popup zoom-anim-dialog mfp-hide">
<img src="images\thermal_research_paper.png" alt="Another" />
<h2>Thermoelectric generators using skutterudites & selenium alloys with endotaxial nanostructures for enhanced solar thermal energy conversion.</h2>
<p>This study investigates the potential of skutterudites and selenium alloys with endotaxial nanostructures in enhancing the efficiency of thermoelectric generators (TEGs) for solar-thermal energy applications. Recognizing the limitations of traditional TEG materials at high temperatures, this paper focuses on the advancement of skutterudites and bismuth telluride selenide (Bi<sub>2</sub>Te<sub>3</sub>Se<sub>2</sub>), and lead telluride selenide (PbTeSe) alloys. Endotaxial nanostructuring is highlighted for its effectiveness in reducing thermal conductivity while maintaining electrical conductivity, thereby significantly improving the thermoelectric figure of merit (zT). The paper reviews the principles of TEGs and the latest developments in nanostructured thermoelectric materials, particularly at elevated temperatures suitable for solar-thermal systems. It also discusses the integration challenges and environmental and economic aspects of these advanced materials in TEGs.</p>
<p>December 2023</p>
<a href="files/Thermal_Floater_Paper.pdf" target="_blank" class="btn btn-default">Download Paper</a>
</div>
</div>
<!-- portfolio item -->
<div class="col-md-4 col-sm-6 grid-item innovation">
<a href="#small-dialog16" class="work-content">
<div class="portfolio-item rounded shadow-dark">
<div class="details">
<span class="term">Innovation</span>
<h4 class="title">ATL Design Thinking Workshop</h4>
<span class="more-button"><i class="icon-options"></i></span>
</div>
<div class="thumb">
<img src="images/works/atl_workshop.png" alt="Portfolio-title" />
<div class="mask"></div>
</div>
</div>
</a>
<div id="small-dialog16" class="white-popup zoom-anim-dialog mfp-hide">
<img src="images\atl_workshop.png" alt="Another" />
<h2>ATL Design Thinking Workshop</h2>
<p>During a special 10-day workshop, I guided 50 young people from NGOs and the Rainbow Homes Orphanage through a world of STEM learning. We explored fun and important topics like design thinking, 3D modeling, Internet of Things (IoT) electronics and sensors, coding, and prototyping techniques, helping them see the cool things science and technology can do.<br><br>The best part was watching them use what they learned to create their own tech exhibits. They teamed up, shared ideas, and built something amazing from scratch. It was more than a lesson; it was a chance for them to discover their potential and think about a future in Design & Engineering. By the end, it wasn't just about the projects they created; it was about the spark in their eyes, the new dreams they had, and the confidence they built. This workshop made them see that with the right tools and knowledge, they can turn any dream into reality.</p>
<p>July 2023</p>
<a href="https://drive.google.com/drive/folders/1bgBsRCkiLy-eSKrJkEESq8FPsXJFzNmF?usp=drive_link" target="_blank" class="btn btn-default">View Workshop Files</a>
</div>
</div>
<!-- portfolio item -->
<div class="col-md-4 col-sm-6 grid-item web_dev">
<a href="#small-dialog29" class="work-content">
<div class="portfolio-item rounded shadow-dark">
<div class="details">
<span class="term">Web Development, UI/UX Designing</span>
<h4 class="title">Pawsible Foods</h4>
<span class="more-button"><i class="icon-options"></i></span>
</div>
<div class="thumb">
<img src="images/works/pawsible.png" alt="Portfolio-title" />
<div class="mask"></div>
</div>
</div>
</a>
<div id="small-dialog29" class="white-popup zoom-anim-dialog mfp-hide">
<img src="images\pawsible_foods.png" alt="Another" />
<h2>Pawsible Foods</h2>
<p>I designed and developed a bespoke website for Pawsible Foods, a trailblazer in the pet food industry. Harnessing the power of the MERN stack (MongoDB, Express.js, React.js, Node.js), I tailored a paws-itively unique digital kennel that makes Pawsible Foods the alpha in the online pack. The website's bark is as strong as its bite, thanks to a custom authentication system, ensuring a secure and tail-wagging experience for every user. I also buried a bone with a bespoke Content Management System (CMS), perfect for managing a litter of articles, giving the site a dynamic and playful edge. A major treat in my development process was fetching top-notch SEO strategies, ensuring that Pawsible Foods doesn't just sit and stay but also races ahead in search engine results.
</p>
<p>June 2023</p>
<a href="https://pawsiblefoods.com/" target="_blank" class="btn btn-default">Visit Website</a>
</div>
</div>
<!-- portfolio item -->
<div class="col-md-4 col-sm-6 grid-item web_dev">
<a href="#small-dialog32" class="work-content">
<div class="portfolio-item rounded shadow-dark">
<div class="details">
<span class="term">Web Development, UI/UX Designing</span>
<h4 class="title">Montage 2023</h4>
<span class="more-button"><i class="icon-options"></i></span>
</div>
<div class="thumb">
<img src="images/works/montage.png" alt="Portfolio-title" />
<div class="mask"></div>
</div>
</div>
</a>
<div id="small-dialog32" class="white-popup zoom-anim-dialog mfp-hide">
<img src="images\montage_2023.png" alt="Another" />
<h2>Montage 2023</h2>
<p>For Montage 2023 website development, I sought to blend artistry with advanced web technology, crafting a site that offers a rich, dynamic user experience. I drew the background in layered sections to create a parallax effect; as the user moves their mouse, each layer shifts counter to the cursor's movement, encapsulating the theme "Stillness is Another Action" in an interactive form. Furthermore, to meet my client's desire for a distinctive font reminiscent of 'The Great Gatsby,' I designed a bespoke typeface from scratch, ensuring their vision for elegance and classic style was fully realized. Precision in animation is another hallmark of this site—details and movements are fine-tuned to an extent that may go unnoticed to the untrained eye, but stand as a testament to my commitment to perfection.
</p>
<p>March 2023</p>
<a href="https://montage2023.github.io/" target="_blank" class="btn btn-default">Visit Website</a>
</div>
</div>
<!-- portfolio item -->
<div class="col-md-4 col-sm-6 grid-item innovation">
<a href="#small-dialog36" class="work-content">
<div class="portfolio-item rounded shadow-dark">
<div class="details">
<span class="term">Innovation, 3D Modelling</span>
<h4 class="title">Vapor Siphon</h4>
<span class="more-button"><i class="icon-options"></i></span>
</div>
<div class="thumb">
<img src="images/works/vapor_siphon.png" alt="Portfolio-title" />
<div class="mask"></div>
</div>
</div>
</a>
<div id="small-dialog36" class="white-popup zoom-anim-dialog mfp-hide">
<img src="images\vapor_siphon.png" alt="Another" />
<h2>Vapor Siphon</h2>
<p>I present the Vapor Siphon, which I theorized in response to the critical global water crisis, particularly addressing the significant water consumption and wastage in power plants' cooling towers. This innovative system captures and recycles water vapor from cooling towers, vastly reducing water loss and financial costs associated with water consumption and treatment. It employs charging electrodes and a unique collector mesh to efficiently condense and collect water vapor. The reclaimed distilled water is reintegrated into the plant's coolant loop, offering substantial savings. The Vapor Siphon not only mitigates water stress in surrounding communities but also promotes environmental sustainability and economic efficiency. Its ability to be retrofitted to existing towers and its near 100% collection efficiency distinguish it from other water-saving technologies, making it a pivotal solution in the fight against the global water crisis.
</p>
<p>June 2023</p>
<a href="https://incy.notion.site/Vapor-Siphon-b867b5fedd5345898678f63cf51d7f20?pvs=4" target="_blank" class="btn btn-default">Visit Details</a>
</div>
</div>
<!-- portfolio item -->
<div class="col-md-4 col-sm-6 grid-item achievements">
<a href="#small-dialog21" class="work-content">
<div class="portfolio-item rounded shadow-dark">
<div class="details">
<span class="term">Achievements, Innovation</span>
<h4 class="title">Children's Climate Prize</h4>
<span class="more-button"><i class="icon-options"></i></span>
</div>
<div class="thumb">
<img src="images/works/ccprize.png" alt="Portfolio-title" />
<div class="mask"></div>
</div>
</div>
</a>
<div id="small-dialog21" class="white-popup zoom-anim-dialog mfp-hide">
<img src="images\ccprize.png" alt="Another" />
<h2>Children's Climate Prize</h2>
<p>I was honored with the prestigious Children's Climate Prize in 2022 for being the proud creator of "The Thermal Floater" - an innovative solution to harness solar thermal energy. I was recognized for this groundbreaking invention, and this international award, sponsored by Telge Energi, celebrates young visionaries committed to environmental and climate issues. The Children's Climate Prize acknowledges the power of youth innovation in addressing global environmental challenges. Winning this award has not only been a milestone in my journey but also a testament to the potential of young minds in driving meaningful change.
<br><br>
My achievement with The Thermal Floater has been highlighted in major news outlets like Global India, National Geographic, Heart 17, The Ethicalist, The Statesman, MyNewsDesk, The Indian Awaaz, Ecovoice.au, Times of India, hakansonunited, Financial Smachar, and Euronews. These recognitions underscore the relevance and impact of my invention in the global pursuit of sustainable energy solutions. The prize included a diploma, a medal, and a grant of SEK 100,000, which I am utilizing to advance my project, aiming to bring this revolutionary idea to a global audience. Through The Thermal Floater, I aspire to contribute to a greener, more sustainable world.</p>
<p>February 2023</p>
<a href="files/CCP22-Diplom-A4.pdf" target="_blank" class="btn btn-default">Download Certificate</a>
</div>
</div>
<!-- portfolio item -->
<div class="col-md-4 col-sm-6 grid-item ai_dev">
<a href="#small-dialog34" class="work-content">
<div class="portfolio-item rounded shadow-dark">
<div class="details">
<span class="term">AI Development</span>
<h4 class="title">Stable Diffusion Model</h4>
<span class="more-button"><i class="icon-options"></i></span>
</div>
<div class="thumb">
<img src="images/works/stable_diffusion.png" alt="Portfolio-title" />
<div class="mask"></div>
</div>
</div>
</a>
<div id="small-dialog34" class="white-popup zoom-anim-dialog mfp-hide">
<img src="images\stable_diffusion.png" alt="Another" />
<h2>Stable Diffusion</h2>
<p>I developed a groundbreaking Stable Diffusion Model optimized for low VRAM GPUs, a pioneering solution for high-quality image generation on more accessible hardware. My development, crafted through intensive training on Azure VMs with an investment of $16,000 AWS Credits over four months, is tailored to perform exceptionally on laptops with just 4GB of VRAM. This model stands apart in its ability to produce images comparable to those generated by models requiring 16GB of RAM. A significant breakthrough is the model's precision in rendering hands, a common challenge in AI-generated imagery, ensuring flawlessly detailed and realistic hand representations. Additionally, I have enriched the model with a diverse artistic flair, incorporating over additional 500 million anime-style images sourced from platforms like Pixiv and Danbooru. This unique blend of technological sophistication and artistic diversity positions my model as a distinct and superior choice in the realm of AI-generated art and some of it was automated and posted on instagram at @incineroarblast.
</p>
<p>September 2023</p>
<a href="https://www.instagram.com/incineroarblast/" target="_blank" class="btn btn-default">Visit Instagram</a>
</div>
</div>
<!-- portfolio item -->
<div class="col-md-4 col-sm-6 grid-item achievements">
<a href="#small-dialog25" class="work-content">
<div class="portfolio-item rounded shadow-dark">
<div class="details">
<span class="term">Achievements, Innovation</span>
<h4 class="title">James Dyson Award Singapore</h4>
<span class="more-button"><i class="icon-options"></i></span>
</div>
<div class="thumb">
<img src="images/works/james_dyson_sg.png" alt="Portfolio-title" />
<div class="mask"></div>
</div>
</div>
</a>
<div id="small-dialog25" class="white-popup zoom-anim-dialog mfp-hide">
<img src="images\james_dyson_2023.png" alt="Another" />
<h2>James Dyson Award Singapore</h2>
<p>I proudly hold the title of national runner-up in the 2023 James Dyson Award, Singapore for developing The Thermal Floater. This innovative project, aimed at efficiently converting solar-thermal energy into electricity, stood out in an esteemed international competition that attracts thousands of entries globally. The recognition of The Thermal Floater in this prestigious event highlights the importance of sustainable energy solutions in urban environments. The media coverage and attention following this achievement have been instrumental in amplifying the project's visibility and impact, fostering valuable connections and learning experiences in the field of design engineering and innovation.
</p>
<p>October 2023</p>
<a href="files/Thermal Floater_JDA_Certificates_National Winners_2023.pdf" target="_blank" class="btn btn-default">Download Certificate</a>
</div>
</div>
<!-- portfolio item -->
<div class="col-md-4 col-sm-6 grid-item web_dev ai_dev">
<a href="#small-dialog30" class="work-content">
<div class="portfolio-item rounded shadow-dark">
<div class="details">
<span class="term">Web Development, UI/UX Designing</span>
<h4 class="title">Alag Labs</h4>
<span class="more-button"><i class="icon-options"></i></span>
</div>
<div class="thumb">
<img src="images/works/alag_labs.png" alt="Portfolio-title" />
<div class="mask"></div>
</div>
</div>
</a>
<div id="small-dialog30" class="white-popup zoom-anim-dialog mfp-hide">
<img src="images\alag_labs.png" alt="Another" />
<h2>Alag Labs</h2>
<p>At Alag Labs, I crafted a web experience that stands out in the realm of AI Tech Consulting. Our philosophy, rooted in the meaning of "Alag" or "different," is reflected in every aspect of the site. My commitment to uniqueness is showcased through unique animations—subtle yet sophisticated—intentionally placed to delight those with an eye for detail. I leveraged advanced technologies to infuse the website with elements of fun amidst its professionalism. For instance, playful narratives juxtapose the rigorous development process with a touch of humor. This blend of technical excellence and creative storytelling sets Alag Labs apart, ensuring that visitors not only remember the site but also the ingenuity it represents.
<br><br>
The tech stack that I developed the website on is modern and robust, facilitating a seamless and interactive user experience. Behind the scenes, every line of code is written with perfectionism and precision, ensuring that Alag Labs is not just a name but a benchmark for innovation and uniqueness in the digital space.
</p>
<p>November 2023</p>
<a href="https://www.alaglabs.com/" target="_blank" class="btn btn-default">Visit Website</a>
</div>
</div>
</div>
<!-- more button -->
<div class="load-more text-center mt-4">
<a href="javascript:" class="btn btn-default"><i class="fas fa-spinner"></i> View All</a>
<!-- numbered pagination (hidden for infinite scroll) -->
<ul class="portfolio-pagination list-inline d-none">
<li class="list-inline-item">1</li>
<li class="list-inline-item"><a href="projects/works-2.html">2</a></li>
</ul>
</div>
</div>
</section>
<!-- section prices -->
<section id="prices">
<div class="container">
<!-- section title -->
<h2 class="section-title wow fadeIn">Website Pricing Plans</h2>
<div class="spacer" data-height="60"></div>
<div class="row">
<div class="col-md-4 pr-md-0 mt-md-4 mt-0">
<!-- price item -->
<div class="price-item bg-dark rounded shadow-dark text-center">
<img src="images/price-1.svg" alt="Regular" />
<h2 class="plan">Single-Page Webite</h2>
<p>Craft an online identity with a sleek, single-page website that concisely presents your brand or personal story</p>
<p>Additionally, I'll help crystallize your vision with theme suggestions and rough designs, offering additional design choices for a fee</p>
<p>Starting from</p>
<h3 class="price"><em>$</em>750<span>+</span></h3>
<a href="#contact" class="btn btn-default">Get Started</a>
</div>
</div>
<div class="col-md-4 px-md-0 my-4 my-md-0">
<!-- price item recommended-->
<div class="price-item bg-dark rounded shadow-dark text-center best">
<span class="badge">Recommended</span>
<img src="images/price-2.svg" alt="Premium" />
<h2 class="plan">Multi-Page Website</h2>
<p>Expand your digital footprint with a multi-page website, perfect for showcasing a comprehensive view of storytelling and functionality</p>
<p>Beyond that, receive guidance on aesthetics and layout, with multiple design mockups and specialized consultations available for extra</p>
<p>Starting from</p>
<h3 class="price"><em>$</em>1300<span>+</span></h3>
<a href="#contact" class="btn btn-default">Get Started</a>
</div>
</div>
<div class="col-md-4 pl-md-0 mt-md-4 mt-0">
<!-- price item -->
<div class="price-item bg-dark rounded shadow-dark text-center">
<img src="images/price-3.svg" alt="Ultimate" />
<h2 class="plan">Shopify / Wordpress</h2>
<p>Elevate your online business with a robust, feature-rich customized Shopify or WordPress site, tailored to your unique needs</p>
<p>Alongslide, get support in theme selection and feature integration, with access to unique designs & bug fixes for no added cost</p>
<p>Starting from</p>
<h3 class="price"><em>$</em>2500<span>+</span></h3>
<a href="#contact" class="btn btn-default">Get Started</a>
</div>
</div>
</div>
</div>
</section>
<!-- section testimonials -->
<section id="testimonials">
<div class="container">
<!-- section title -->
<h2 class="section-title wow fadeInUp">Clients & Reviews</h2>
<div class="spacer" data-height="60"></div>
<!-- testimonials wrapper -->
<div class="testimonials-wrapper">
<!-- testimonial item -->
<div class="testimonial-item text-center mx-auto">
<div class="thumb mb-3 mx-auto">
<img src="images/avatars/avatar_feedback_1.png" size="25%" alt="customer-name" />
</div>
<h4 class="mt-3 mb-0">Armaan Dhanda</h4>
<span class="subtitle">Co-Founder: Pawsible Foods</span>
<div class="bg-dark padding-30 shadow-dark rounded triangle-top position-relative mt-4">
<p class="mb-0">I enjoy working with the theme and learn so much. You guys make the process fun and interesting. Good luck! 👍</p>
</div>
</div>
<!-- testimonial item -->
<div class="testimonial-item text-center mx-auto">
<div class="thumb mb-3 mx-auto">
<img src="images/avatars/avatar_feedback_2.png" size="25%" alt="customer-name" />
</div>
<h4 class="mt-3 mb-0">Shivansh Anand</h4>
<span class="subtitle">Co-Founder: Incy Tech</span>
<div class="bg-dark padding-30 shadow-dark rounded triangle-top position-relative mt-4">
<p class="mb-0">I enjoyed working with him and learned so much. He made the process fun and interesting. Good luck! 🔥</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-3 col-6">
<!-- client item -->
<div class="client-item">
<div class="inner">
<img src="images/clients/client1.png" width="50%" alt="client-name" />
</div>
</div>
</div>
<div class="col-md-3 col-6">
<!-- client item -->
<div class="client-item">
<div class="inner">
<img src="images/clients/client2.png" width="50%" alt="client-name" />
</div>
</div>
</div>
<div class="col-md-3 col-6">
<!-- client item -->
<div class="client-item">
<div class="inner">
<img src="images/clients/client3.png" width="50%" alt="client-name" />
</div>
</div>
</div>
<div class="col-md-3 col-6">
<!-- client item -->
<div class="client-item">
<div class="inner">
<img src="images/clients/client4.png" width="50%" alt="client-name" />
</div>
</div>
</div>
<div class="col-md-3 col-6">
<!-- client item -->
<div class="client-item">
<div class="inner">
<img src="images/clients/client5.png" width="50%" alt="client-name" />
</div>
</div>
</div>
<div class="col-md-3 col-6">
<!-- client item -->
<div class="client-item">
<div class="inner">
<img src="images/clients/client6.png" width="50%" alt="client-name" />
</div>
</div>
</div>
<div class="col-md-3 col-6">
<!-- client item -->
<div class="client-item">
<div class="inner">
<img src="images/clients/client7.png" width="50%" alt="client-name" />
</div>
</div>
</div>
<div class="col-md-3 col-6">
<!-- client item -->
<div class="client-item">
<div class="inner">
<img src="images/clients/client8.png" width="50%" alt="client-name" />
</div>
</div>
</div>
</div>
</div>
</section>
<!-- section blog -->
<section id="innovation">
<div class="container">
<!-- section title -->
<h2 class="section-title wow fadeInUp">Recommended Works</h2>
<div class="spacer" data-height="60"></div>
<div class="row blog-wrapper">
<div class="col-md-4">
<!-- blog item -->
<div class="blog-item rounded bg-dark shadow-dark wow fadeIn grid-item web_dev">
<div class="thumb">
<a href="https://www.youtube.com/watch?v=Pzd8UwnPWxM" class="work-video">
<div class="portfolio-item rounded shadow-dark">
<div class="details">
<span class="term">Innovation, Animation</span>
<h4 class="title">Thermal Floater Animated Pitch</h4>
<span class="more-button"><i class="icon-camrecorder"></i></span>
</div>
<div class="thumb">
<img src="images\works\tf4.png" alt="Portfolio-title" />
<div class="mask"></div>
</div>
</div>
</a>
</div>
<div class="details">
<h4 class="my-0 title"><a href="https://thermal-floater.github.io" target="_blank">Thermal Floater: The Floating Energy Generator</a></h4>
<ul class="list-inline meta mb-0 mt-2">
<li class="list-inline-item">September, 2023</li>
</ul>
</div>
</div>
</div>
<div class="col-md-4">
<!-- blog item -->
<div class="blog-item rounded bg-dark shadow-dark wow fadeIn">
<div class="thumb">
<a href="#drip-dialog" class="work-content">
<div class="portfolio-item rounded shadow-dark">
<div class="details">
<span class="term">Innovations, AI Development</span>
<h4 class="title">Drip Check</h4>
<span class="more-button"><i class="icon-options"></i></span>
</div>
<div class="thumb">
<img src="images/works/drip_check.png" alt="Portfolio-title" />
<div class="mask"></div>
</div>
</div>
</a>
</div>
<div class="details">
<h4 class="my-0 title"><a href="#drip-dialog" class="work-content">Drip Check: Rate Your Mad Lit 🔥 Drip With Drip Check</a></h4>
<ul class="list-inline meta mb-0 mt-2">
<li class="list-inline-item">November, 2023</li>
</ul>
</div>
<div id="drip-dialog" class="white-popup zoom-anim-dialog mfp-hide">
<img src="images\drip_check.png" alt="Another" />
<h2>Drip Check</h2>
<p>Oi, you lot! I'm the mastermind behind DripCheck, the sickest place to rate your threads and take your style to new heights. I've been cooking up a sick multimodal image recognition AI that's straight fire, running it on an Azure VM with with a beastly Nvidia A1000 to keep it 100. And yo, it's all on the house, no strings. My tech is next-level — I got that LLM magic sprinkling some finesse on the fashion feedback. It ain't just about the score out of 10; it's about boosting your swag. Plus, when you're bussin with your outfit, DripCheck hooks you up with a snazzy pic to flex those digits on your feed and see who's got the slickest drip in your squad and who's the drip king or queen among your sussy crew.
<br><br>
This isn't your average run-of-the-mill app, bruv, it's your style sidekick. DripCheck's here to mix it up with banter and big-ups, all while hooking you up advice to amp up your garms. Stay fresh, stay fly, and let DripCheck be the judge. 🎩🔥👟
</p>
<p>December 2023</p>
<a href="https://www.dripcheck.fit/" target="_blank" class="btn btn-default">Visit Website</a>
</div>
</div>
</div>
<div class="col-md-4">
<!-- blog item -->
<div class="blog-item rounded bg-dark shadow-dark wow fadeIn grid-item web_dev">
<div class="thumb">
<a href="#weev-dialog" class="work-content">
<div class="portfolio-item rounded shadow-dark">
<div class="details">
<span class="term">Innovations, AI</span>
<h4 class="title">Weev.Dev</h4>
<span class="more-button"><i class="icon-options"></i></span>
</div>
<div class="thumb">
<img src="images/works/weev.png" alt="Portfolio-title" />
<div class="mask"></div>
</div>
</div>
</a>
</div>
<div class="details">
<h4 class="my-0 title"><a href="#weev-dialog" class="work-content">Weev.Dev: Unleash The Power Of Job Automation</a></h4>
<ul class="list-inline meta mb-0 mt-2">
<li class="list-inline-item">December, 2023</li>
</ul>
</div>
<div id="weev-dialog" class="white-popup zoom-anim-dialog mfp-hide">
<img src="images\weev.png" alt="Another" />
<h2>Weev.dev</h2>
<p>Welcome to weev.dev, my latest creation where tech meets tenacity to supercharge your job applications, enabling you to connect, apply, and get into jobs like never before. Here, Weev, your personal AI sidekick, is gearing up to redefine the art of job applications. But it's not all work and no play—our 'coming soon' page is a digital tapestry, with threads of code that dance to the tune of opportunity, embodying the weave of connections right before your eyes. It's a bit like magic, but with algorithms. Beneath this playful surface of "Coming Soon" is robust technology; where I've woven together web canvas with a sprinkle of randomness to ensure that each visit feels as fresh as your first job offer. And just like the perfect resume, weev.dev is crafted to stand out, because who says professional can't be fun?
</p>
<p>December 2023</p>
<a href="../weev-dev/index.html" target="_blank" class="btn btn-default">Visit Website</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- section contact -->
<section id="contact">
<div class="container">
<!-- section title -->
<h2 class="section-title wow fadeInUp">Get In Touch</h2>
<div class="spacer" data-height="60"></div>
<div class="row">
<div class="col-md-4">
<!-- contact info -->
<div class="contact-info">
<h3 class="wow fadeInUp">Let's talk about everything!</h3>
<p class="wow fadeInUp">Don't like forms? Send me an <a href="mailto:sparshnirav@gmail.com">email</a>. 👋</p>
</div>
</div>
<div class="col-md-8">
<!-- Contact Form -->
<form id="contact-form" class="contact-form mt-6" method="post" action="https://hook.eu2.make.com/5f88pxr5w2ilhc4aiq2g1z79qwy84il1">
<div class="messages"></div>
<div class="row">
<div class="column col-md-6">
<!-- Name input -->
<div class="form-group">
<input type="text" class="form-control" name="InputName" id="InputName" placeholder="Your name" required="required" data-error="Name is required.">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="column col-md-6">
<!-- Email input -->
<div class="form-group">
<input type="email" class="form-control" id="InputEmail" name="InputEmail" placeholder="Email address" required="required" data-error="Email is required.">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="column col-md-12">
<!-- Subject input -->
<div class="form-group">
<input type="text" class="form-control" id="InputSubject" name="InputSubject" placeholder="Subject" required="required" data-error="Subject is required.">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="column col-md-12">
<!-- Message textarea -->
<div class="form-group">
<textarea name="InputMessage" id="InputMessage" class="form-control" rows="5" placeholder="Message" required="required" data-error="Message is required."></textarea>
<div class="help-block with-errors"></div>
</div>
</div>
<div class="column col-md-12" id="submitted" name="submitted" style="display:none">
<!-- Submitted -->
<div class="form-group">
<p type="text" style="flex: 1; margin: 0; text-align: center; vertical-align: middle; color:#44D7B5">Your Form Has Been Successfully Submitted </p>
</div>
</div>
<div class="column col-md-12" id="error" name="error" style="display:none">
<!-- Submitted -->
<div class="form-group">
<p type="text" style="flex: 1; margin: 0; text-align: center; vertical-align: middle; color:#FF4C60">Your Form Couldn't Be Successfully Submitted, Try Sending an Email! </p>
</div>
</div>
</div>
<button type="submit" name="submit" id="submit" value="Submit" class="btn btn-default">Send Message</button><!-- Send Button -->
</form>
<!-- Contact Form end -->
</div>
</div>
</div>
</section>
<div class="spacer" data-height="96"></div>
<footer class="footer">
</footer>
</main>
<!-- Go to top button -->
<a href="javascript:" id="return-to-top"><i class="fas fa-arrow-up"></i></a>
<!-- SCRIPTS -->
<script src=" js/jquery-1.12.3.min.js"></script>
<script src=" js/jquery.easing.min.js"></script>
<script src=" js/jquery.waypoints.min.js"></script>
<script src=" js/jquery.counterup.min.js"></script>
<script src=" js/popper.min.js"></script>
<script src=" js/bootstrap.min.js"></script>
<script src=" js/isotope.pkgd.min.js"></script>
<script src=" js/infinite-scroll.min.js"></script>
<script src=" js/imagesloaded.pkgd.min.js"></script>
<script src=" js/slick.min.js"></script>
<script src=" js/contact.js"></script>
<script src=" js/validator.js"></script>
<script src=" js/wow.min.js"></script>
<script src=" js/morphext.min.js"></script>
<script src=" js/parallax.min.js"></script>
<script src=" js/jquery.magnific-popup.min.js"></script>
<script src=" js/custom.js"></script>
<script>
$(document).ready(function () {
$('#contact-form').on('submit', function (e) {
e.preventDefault(); // Prevent default form submit
$('#submitted, #error').hide(); // Hide both messages before sending new request
$.ajax({
type: $(this).attr('method'),
url: $(this).attr('action'),
data: $(this).serialize(), // Serialize form data
success: function (data, textStatus, jqXHR) {
// If response is successful (status code 200), show the 'submitted' message
if (jqXHR.status === 200) {
$('#submitted').show();
} else {