-
Notifications
You must be signed in to change notification settings - Fork 66
/
index.js
1053 lines (1032 loc) · 23.6 KB
/
index.js
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
import {
nitk,
cluboard,
cash_flow,
gdsc,
iris,
ecell,
genesis,
portfolio,
publiclab,
zulip,
cdc,
chargeswap,
placeicon,
recruitment,
huntly,
oracle,
comicify_ai,
greentrust,
averlon,
devfolio,
pba,
ethglobal,
polkadot,
lightspeed,
dennisivy,
manipal,
icon,
ethforall
} from "../assets";
import {
AiFillGithub,
AiFillInstagram,
AiFillLinkedin,
AiFillMail,
AiOutlineTwitter,
AiFillHtml5,
AiOutlineGitlab,
} from "react-icons/ai";
import {
SiDjango,
SiJavascript,
SiBootstrap,
SiReact,
SiTailwindcss,
SiGraphql,
SiPython,
SiCplusplus,
SiC,
SiRubyonrails,
SiJquery,
SiVisualstudiocode,
SiPostman,
SiGit,
SiMysql,
SiSolidity,
SiNetlify,
SiChartdotjs,
SiVite,
SiArduino,
SiWeb3Dotjs,
SiIpfs,
SiDotnet,
SiTwilio,
SiFlutter,
SiReplit,
SiFlask,
SiFigma,
SiGooglemaps,
SiOpenai,
SiGooglecloud,
SiNextdotjs,
SiMicrosoftazure
} from "react-icons/si";
import {
FaHardHat,
FaRust
} from "react-icons/fa";
import {
IoIosNotificationsOutline
} from "react-icons/io";
import {
FaGolang
} from "react-icons/fa6";
import { DiCss3, DiJava, DiMsqlServer, DiRuby } from "react-icons/di";
export const resumeLink = "https://drive.google.com/file/d/1vkxyMDB5_KpMwt4QXFgT2aqdRizr8Czh/view?usp=sharing";
export const repoLink = "https://github.com/mittal-parth/personal-portfolio";
export const callToAction = "https://www.linkedin.com/in/mittal-parth";
export const navLinks = [
{
id: "skills",
title: "Skills & Experience",
},
{
id: "education",
title: "Education",
},
{
id: "achievements",
title: "Achievements",
},
{
id: "projects",
title: "Projects",
},
{
id: "openSource",
title: "Open Source",
},
{
id: "extraCurricular",
title: "Extra Curricular",
},
{
id: "contactMe",
title: "Contact Me",
},
];
// Add your past academic experiences here
export const educationList = [
{
id: "education-1",
icon: nitk,
title: "National Institute of Technology Karnataka, Surathkal",
degree: "Bachelor of Technology",
duration: "December 2020 - May 2024",
content1: "Major: Electronics and Communication Engineering",
content2: "Minor: Information Technology",
},
{
id: "education-2",
icon: pba,
title: "Polkadot Blockchain Academy",
degree: "",
duration: "May 2024 - June 2024",
content1: "Graduated with a distinction in the fifth cohort of the Polkadot Blockchain Academy at the National University of Singapore.",
},
];
// Add your past achievments here for example - rankings in hackathons/events
export const achievements = [
{
id: "a-1",
icon: ethglobal,
event: "ETHIndia'22 | World's Largest Ethereum Hackathon",
position: "Winner",
content1: "Top 12 winners among 20k+ registrations",
content2: "One of Polygon's Best Public Goods",
content3: "Best Module on Biconomy SDK",
article: "https://www.thehindu.com/news/cities/Mangalore/nitk-iiit-delhi-team-makes-it-to-top-12-winners-in-ethindia-22/article66238923.ece",
project: "https://devfolio.co/projects/chargeswap-3527",
youtube: "https://youtu.be/9rieTya8Yds?t=3908",
},
{
id: "a-2",
icon: polkadot,
event: "Polkadot Hackathon: Europe Edition",
position: "2nd Runner Up in the ink! Smart Contract Category",
content1: "Built GreenTrust offering a novel solution for obtaining certification in organic farming.",
content2: "",
content3: "",
github: "https://github.com/pranav2305/GreenTrust",
},
{
id: "a-3",
icon: lightspeed,
event: "Warpspeed by Lightspeed",
position: "1st Runner Up",
content1: "1st Runner Up Overall by Lightspeed among 107 hackers",
content2: "Top 3 projects using Replit",
content3: "1st Runner Up by Amazon Web Services (AWS)",
article: "https://shorturl.at/fhjsT",
},
{
id: "a-4",
icon: dennisivy,
event: "September Hackathon by Dennis Ivy",
position: "Winner",
content1: "Rated the best portfolio website among 450+ participants across the globe.",
content2: "",
content3: "",
youtube: "https://www.youtube.com/watch?v=X2473En3h_o&t=5278s",
project: "https://parthmittal.netlify.app/",
},
{
id: "a-5",
icon: manipal,
event: "Manipal Hackathon'22",
position: "Consolation Prize",
content1: "Top 10 among 500+ teams across India",
content2: "Developed a cross-platform mobile application to address the problem of social cohesion.",
content3: "",
article: "https://shorturl.at/exEIQ",
},
{
id: "a-6",
icon: icon,
event: "ICON Hyperbuild Hackathon",
position: "Honorable Mention",
content1: "Honorable Mention among 655 participants across the globe in a 3 month-long online hackathon.",
content2: "",
content3: "",
project: "https://devpost.com/software/green-trust-xj2w6g",
},
{
id: "a-7",
icon: ethforall,
event: "ETHForAll 2023",
position: "Top 3 Superfluid Projects",
content1: "Bounty winners among 430 projects in ETHGlobal's largest online hackathon.",
content2: "",
content3: "",
project: "https://devfolio.co/projects/green-trust-ed14",
},
];
// Add your software developments skills here for example - programming languages, frameworks etc.
export const skills = [
{
title: "Programming Languages",
items: [
{
id: "pl-1",
icon: DiRuby,
name: "Ruby",
},
{
id: "pl-2",
icon: SiPython,
name: "Python",
},
{
id: "pl-3",
icon: SiCplusplus,
name: "C++",
},
{
id: "pl-4",
icon: FaGolang,
name: "Go",
},
{
id: "pl-5",
icon: FaRust,
name: "Rust",
},
{
id: "pl-6",
icon: DiJava,
name: "Java",
},
{
id: "pl-7",
icon: SiC,
name: "C",
},
{
id: "pl-8",
icon: AiFillHtml5,
name: "HTML",
},
{
id: "pl-9",
icon: DiCss3,
name: "CSS",
},
{
id: "pl-10",
icon: SiJavascript,
name: "JavaScript",
},
{
id: "pl-11",
icon: SiSolidity,
name: "Solidity",
}
],
},
{
title: "Frameworks/Libraries",
items: [
{
id: "f-1",
icon: SiDjango,
name: "Django",
},
{
id: "f-2",
icon: SiRubyonrails,
name: "Ruby on Rails",
},
{
id: "f-3",
icon: SiReact,
name: "ReactJS",
},
{
id: "f-4",
icon: SiBootstrap,
name: "Bootstrap",
},
{
id: "f-5",
icon: SiTailwindcss,
name: "Tailwind CSS",
},
{
id: "f-6",
icon: SiJquery,
name: "jQuery",
},
{
id: "f-7",
icon: SiGraphql,
name: "GraphQL",
},
{
id: "f-8",
icon: SiDotnet,
name: ".NET",
},
],
},
{
title: "Tools",
items: [
{
id: "t-1",
icon: SiMicrosoftazure,
name: "Azure",
},
{
id: "t-2",
icon: SiMysql,
name: "MySQL",
},
{
id: "t-3",
icon: SiPostman,
name: "Postman",
},
{
id: "t-4",
icon: SiVisualstudiocode,
name: "VS Code",
},
{
id: "t-5",
icon: SiGit,
name: "Git",
},
{
id: "t-6",
icon: AiFillGithub,
name: "GitHub",
},
{
id: "t-7",
icon: AiOutlineGitlab,
name: "Gitlab",
},
{
id: "t-8",
icon: SiNetlify,
name: "Netlify",
},
{
id: "t-9",
icon: SiVite,
name: "ViteJS",
},
],
},
];
// Add your current/past professional work experience here
export const experiences = [
{
organisation: "Oracle, India",
logo: oracle,
link: "https://www.oracle.com/in/",
positions: [
{
title: "Member of Technical Staff - 1",
duration: "Jul 2024 - Present",
content: [
{
text: "Working in the DBaaS Control Plane team in the Database Unit.",
link: "",
},
],
},
{
title: "Member of Technical Staff Intern",
duration: "May 2023 - Jul 2023",
content: [
{
text: "Worked with the Exadata Cloud@Customer team in the Database Unit.",
link: "",
},
{
text: "Wrote APIs in Java to help gracefully migrate a running ExaC@C infrastructure to a new region in the case of a region failure",
link: ""
}
],
},
],
},
{
organisation: "Averlon",
logo: averlon,
link: "https://averlon.ai/",
positions: [
{
title: "Software Developer Intern",
duration: "Sept 2023 - Feb 2024",
content: [
{
text: "Added support for the discoverability of Microsoft Azure assets utilising Go and Gremlin.",
link: ""
},
{
text: "Extended support for Azure for reachability analysis of assets for cloud security posture management.",
link: ""
}
],
},
],
},
{
organisation: "IRIS, NITK",
logo: iris,
link: "https://iris.nitk.ac.in/about_us",
positions: [
{
title: "Tech Lead",
duration: "Apr 2023 - Apr 2024",
content: [
{
text: "Led a team of 40+ students in digitizing administrative, academic and alumni-related work.",
link: "",
},
{
text: "Managed all phases of Software Development Life Cycle (SDLC) for 15+ modules.",
link: "",
},
],
},
{
title: "Web Lead",
duration: "Apr 2022 - Present",
content: [
{
text: "Managed a team of 6 student developers while also overlooking multiple modules.",
link: "",
},
],
},
{
title: "Web Developer",
duration: "Nov 2021 - Apr 2022",
content: [
{
text: "Added Conditional Fields support to the Forms Module.",
link: "",
},
],
},
{
title: "Web Developer Intern",
duration: "Jun 2021 - Oct 2021",
content: [
{
text: "Developed a multi-role approval flow system to facilitate data collection and display on the Institute's Department Websites.",
link: "",
},
],
},
],
}
];
// Add information about all the projects to be listed out in your portfolio
export const projects = [
{
id: "project-1",
title: "Comicify.ai",
github: "https://github.com/ayush4345/Comicify.ai",
link: "https://comicify-ai.vercel.app/",
image: comicify_ai,
content:
"Convert any academic/news/boring text into cool comic strips using GPT-3.5 and Stable Diffusion!",
stack: [
{
id: "icon-1",
icon: SiReact,
name: "React"
},
{
id: "icon-2",
icon: SiTailwindcss,
name: "TailwindCSS"
},
{
id: "icon-3",
icon: SiOpenai,
name: "OpenAI"
},
{
id: "icon-4",
icon: SiGooglecloud,
name: "Google Cloud Platform"
},
{
id: "icon-5",
icon: SiFlask,
name: "Flask"
},
],
},
{
id: "project-2",
title: "GreenTrust",
github: "https://github.com/mittal-parth/GreenTrust",
link: "https://green-trust-fantom.netlify.app/",
image: greentrust,
content:
"Winning project at 3 hackathons, GreenTrust offers a novel solution for obtaining certification in organic farming by organizing credible and decentralized Participatory Guarantee Systems (PGSs).",
stack: [
{
id: "icon-1",
icon: SiReact,
name: "React"
},
{
id: "icon-2",
icon: SiTailwindcss,
name: "TailwindCSS"
},
{
id: "icon-3",
icon: SiNextdotjs,
name: "Next.js"
},
{
id: "icon-4",
icon: SiIpfs,
name: "IPFS"
},
{
id: "icon-5",
icon: SiSolidity,
name: "Solidity"
},
{
id: "icon-6",
icon: IoIosNotificationsOutline,
name: "Push Protocol"
},
],
},
{
id: "project-3",
title: "ChargeSwap",
github: "https://github.com/CommanderAstern/ChargeSwap",
link: "https://devfolio.co/projects/chargeswap-3527",
image: chargeswap,
content:
"A Blockchain-based EV-Battery swapping solution - winning project at ETHIndia'22, the world's largest Ethereum Hackathon",
stack: [
{
id: "icon-1",
icon: SiReact,
name: "React"
},
{
id: "icon-3",
icon: SiWeb3Dotjs,
name: "Web3.js"
},
{
id: "icon-4",
icon: SiSolidity,
name: "Solidity"
},
{
id: "icon-5",
icon: FaHardHat,
name: "HardHat"
},
{
id: "icon-6",
icon: SiIpfs,
name: "IPFS"
},
{
id: "icon-7",
icon: SiArduino,
name: "Arduino"
},
{
id: "icon-8",
icon: IoIosNotificationsOutline,
name: "Push Protocol"
},
],
},
{
id: "project-4",
title: "Samsotech Table Management System",
github: "",
link: "https://www.linkedin.com/posts/mittal-parth_technologysolutions-softwaredevelopment-technology-activity-6994915645066809344-WnMY?utm_source=share&utm_medium=member_desktop",
image: placeicon,
content:
"Restaurant, Place, Table and realtime Reservation Management with Multi-Tenant Architecture, RBAC, SMS and Email integration for Samsotech International",
stack: [
{
id: "icon-1",
icon: SiDotnet,
name: "Dot Net Core MVC 6"
},
{
id: "icon-2",
icon: SiBootstrap,
name: "Bootstrap"
},
{
id: "icon-3",
icon: DiMsqlServer,
name: "MS Sql Server"
},
{
id: "icon-4",
icon: SiJquery,
name: "jQuery"
},
{
id: "icon-5",
icon: SiTwilio,
name: "Twillio"
},
],
},
{
id: "project-5",
title: "Non-Teaching Recruitment Portal, NITK",
github: "",
link: "http://recruitment.nitk.ac.in/",
image: recruitment,
content:
"The official recruitment portal for non-teaching staff with an admin panel, email notifications and payment integration.",
stack: [
{
id: "icon-1",
icon: SiRubyonrails,
name: "Ruby on Rails"
},
{
id: "icon-2",
icon: SiTailwindcss,
name: "TailwindCSS"
},
{
id: "icon-3",
icon: SiJquery,
name: "jQuery"
},
],
},
{
id: "project-6",
title: "Career Development Centre, NITK Website",
github: "",
link: "http://cdc.nitk.ac.in/",
image: cdc,
content:
"The official website of CDC, NITK with a custom built CMS.",
stack: [
{
id: "icon-1",
icon: SiRubyonrails,
name: "Ruby on Rails"
},
{
id: "icon-2",
icon: SiBootstrap,
name: "Bootstrap"
},
{
id: "icon-3",
icon: SiJavascript,
name: "JavaScript"
},
],
},
{
id: "project-7",
title: "Huntly",
github: "",
link: "https://devfolio.co/projects/huntly-b5a9",
image: huntly,
content:
"A cross-platform mobile application that brings people closer to the physical environment and forms meaningful connections by organising real-world Treasure Hunts for free and winning rewards. The app uses machine learning to match users and form teams of like-minded people.",
stack: [
{
id: "icon-1",
icon: SiDjango,
name: "Django Rest Framework"
},
{
id: "icon-2",
icon: SiFlutter,
name: "Flutter"
},
{
id: "icon-3",
icon: SiReplit,
name: "Replit"
},
{
id: "icon-4",
icon: SiFlask,
name: "Flask"
},
{
id: "icon-5",
icon: SiFigma,
name: "Figma"
},
{
id: "icon-6",
icon: SiGooglemaps,
name: "Google Maps API"
},
],
},
{
id: "project-8",
title: "Cluboard",
github: "https://github.com/mittal-parth/Cluboard",
link: "",
image: cluboard,
content:
"A full-stack web application to facilitate sharing resources in college clubs with email notifications, requests and ticketing system, and analytical dashboards.",
stack: [
{
id: "icon-1",
icon: SiDjango,
name: "Django"
},
{
id: "icon-2",
icon: AiFillHtml5,
name: "HTML"
},
{
id: "icon-3",
icon: DiCss3,
name: "CSS"
},
{
id: "icon-4",
icon: SiJavascript,
name: "JavaScript"
},
{
id: "icon-5",
icon: SiBootstrap,
name: "Bootstrap"
},
{
id: "icon-6",
icon: SiChartdotjs,
name: "Chart.js"
},
],
},
{
id: "project-9",
title: "Cash Flow Minimiser",
github: "https://github.com/mittal-parth/Cash-Flow-Minmiser",
link: "https://minimise-cash-flow.netlify.app/",
image: cash_flow,
content:
"A React application to help users visualise and minimise cash flow among multiple transactions.",
stack: [
{
id: "icon-1",
icon: SiReact,
name: "React"
},
{
id: "icon-2",
icon: AiFillHtml5,
name: "HTML"
},
{
id: "icon-3",
icon: DiCss3,
name: "CSS"
}
],
},
{
id: "project-10",
title: "Portfolio",
github: "https://github.com/mittal-parth/personal-portfolio",
link: "https://parthmittal.netlify.app/",
image: portfolio,
content: "Personal portfolio website with React and Tailwind CSS.",
stack: [
{
id: "icon-1",
icon: SiReact,
name: "React"
},
{
id: "icon-2",
icon: SiTailwindcss,
name: "Tailwind CSS"
},
{
id: "icon-3",
icon: AiFillHtml5,
name: "HTML"
},
],
},
];
// Add links to blogs here
export const blogPosts = [
{
id: "post-1",
title: "Blog Post 01 - Title",
link: "#",
date: new Date().toLocaleDateString(), // Can be edited to any string format
image: "https://via.placeholder.com/600/92c952",
tags: [
{
id: "tag-1",
name: "tag 01"
},
{
id: "tag-2",
name: "tag 03"
},
{
id: "tag-3",
name: "tag 03"
},
],
},
{
id: "post-2",
title: "Blog Post 02 - Title",
link: "#",
date: new Date().toLocaleDateString(),
image: "https://via.placeholder.com/600/d32776",
tags: [
{
id: "tag-1",
name: "tag 01"
},
{
id: "tag-2",
name: "tag 03"
},
{
id: "tag-3",
name: "tag 03"
},
],
},
{
id: "post-3",
title: "Blog Post 03 - Title",
link: "#",
date: new Date().toLocaleDateString(),
image: "https://via.placeholder.com/600/771796",
tags: [
{
id: "tag-1",
name: "tag 01"
},
{
id: "tag-2",
name: "tag 03"
},
{
id: "tag-3",
name: "tag 03"
},
],
},
];
// Highlight your GitHub stats like - Organisation, Issues Opened, Pull Requests etc.
export const stats = [
{
id: "stats-1",
title: "Organisations",
value: "2+",
},
{
id: "stats-2",
title: "Issues Opened",
value: "6+",
},
{
id: "stats-3",
title: "Pull Requests",
value: "6+",
},
];
// List out the extra curricular activities you have induldged in like - student clubs, joining research groups etc.
export const extraCurricular = [
{
id: 1,
organisation: "Devfolio",
title: "UniDAO Lead",
duration: "December 2021 - Present",
content: [
{
text: "Selected among 5 students across the country to lead the initiative and grow the culture of Blockchain and Ethereum, powered by Devfolio.",
link: "https://www.linkedin.com/feed/update/urn:li:activity:7097977924686942209/",
},
{
text: "Led a cohort of 37 selected students over 6 weeks to learn and build in the Ethereum ecosystem.",
link: "https://www.linkedin.com/feed/update/urn:li:activity:7095310520282480641/",
},
],
logo: devfolio,
},
{
id: 2,
organisation: "Google Developer Student Club, NITK",
title: "Co-Chair",
duration: "December 2021 - Present",
content: [
{
text: "Started HackClub to promote and spread the culture of Hackathons in the college. 20+ hackathons particiaptions, 15+ wins over the year.",
link: "",
},
{
text: "Co-designed and developed the official website of Incident, NITK with 15K+ visitors",
link: "https://incident.nitk.ac.in/",
},
],
logo: gdsc,
},
{
id: 3,
organisation: "Genesis, NITK",
title: "Competitions Head",
duration: "Sep 2021 - Present",
content: [
{
text: "Qualified for the nationals of Indian Hip Hop Dance Championship",
link: "",
},
{
text: "Won 7 inter-college solo dance competitions",
link: "",
},
],
logo: genesis,
},
{
id: 4,
organisation: "IRIS, NITK",
title: "Tutor",
duration: "Jan 2022 - Jan 2022",
content: [
{
text: "Mentored 150+ students in a month-long Web Development and Ruby on Rails Bootcamp",
link: "https://github.com/IRIS-NITK/IRIS-RoR-Bootcamp-2021",
},
],
logo: iris,
},
{
id: 5,
organisation: "E-Cell, NITK",
title: "Executive Member",
duration: "Sep 2021 - Apr 2022",
content: [
{
text: "Organised the season 3 of the E-Cell NITK Podcast",