-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.tsx
695 lines (689 loc) · 25.4 KB
/
resume.tsx
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
import { Icons } from "@/components/icons";
import { HomeIcon } from "lucide-react";
export const DATA = {
name: "Rupesh Piwal",
initials: "RP",
url: "https://dillion.io",
location: "Pune, India",
// locationLink: "https://www.google.com/maps/place/sanfrancisco",
description:
"Capable of handling end-to-end fullstack projects and codebases.",
// summary:
// "At the end of 2022, I quit my job as a software engineer to go fulltime into building and scaling my own SaaS businesses. In the past, [I pursued a double degree in computer science and business](/#education), [interned at big tech companies in Silicon Valley](https://www.youtube.com/watch?v=d-LJ2e5qKdE), and [competed in over 21 hackathons for fun](/#hackathons). I also had the pleasure of being a part of the first ever in-person cohort of buildspace called [buildspace sf1](https://buildspace.so/sf1).",
avatarUrl: "/Rp_Dp.jpg",
skills: [
"React",
"JavaScript",
"Next.js",
"Typescript",
"Zustand",
"Redux",
"Tailwind CSS",
"Express.js",
"Node.js",
"Postgres",
"MongoDB",
"Docker",
"AWS",
],
navbar: [{ href: "/", icon: HomeIcon, label: "Home" }],
contact: {
email: "rpiwal02@gmail.com",
tel: "9970205937",
social: {
GitHub: {
name: "GitHub",
url: "https://github.com/Rupesh-Piwal",
icon: Icons.github,
navbar: true,
},
LinkedIn: {
name: "LinkedIn",
url: "https://www.linkedin.com/in/rupesh-piwal21/",
icon: Icons.linkedin,
navbar: true,
},
X: {
name: "X",
url: "https://x.com/rpmarch21",
icon: Icons.x,
navbar: true,
},
email: {
name: "Send Email",
url: "#",
icon: Icons.email,
navbar: false,
},
},
},
work: [
{
company: "Jio Platforms",
href: "",
badges: [],
location: "Remote",
title: "Project Intern",
logoUrl:
"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSohZW0W9TJymIUxUO7wDwLLWzxdugPz5FiRw&s",
start: "Aug 2024",
end: "Present",
description:
"Engineered precise data transmission protocols using Protocol Buffers, ensuring type-safe interactions thatimproved efficiency in medical documentation workflows.Integrated Socket.IO with a gRPC server to enable real-time audio streaming via Protocol Buffers,facilitating efficient and seamless communication between client and server.",
},
{
company: "Perfect Software Solutions",
badges: [],
href: "",
location: "Aurangabad",
title: "Frontend Intern",
logoUrl: "/PSS-Logo.png",
start: "Jan 2024",
end: "Mar 2024",
description:
"Crafted pixel-perfect React components from Figma designs, integrating advanced animations with FramerMotion to enhance the UI/UX of flagship products, ensuring a seamless and engaging user experience(UX).",
},
],
education: [
{
school: "Bharati Vidyapeeth's College of Engineering",
href: "",
degree: "Bachelor's Degree of Computer Engineering",
logoUrl:
"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSJgqfQzC_IS038iujinz4yAE1zRW2z-2cX5YI459Oy8zm9VLa3b9OcMG2AyJdlmJMltO8&usqp=CAU",
start: "2021",
end: "2025",
},
{
school: "R.J Internation Jr.College",
href: "",
degree: "Higher Secondary Certificate",
logoUrl:
"https://pbs.twimg.com/profile_images/782094004326326272/CrOompRP_400x400.jpg",
start: "2018",
end: "2020",
},
{
school: "Chate School",
href: "",
degree: "Secondary School Certificate",
logoUrl: "/chate.png",
start: "2006",
end: "2018",
},
],
projects: [
{
title: "Ichofy",
href: "https://ichofy.onrender.com",
dates: "Nov 2024 - Jan 2025",
active: true,
description:
"Architected a high-performance MERN web app for [1000+]() users with optimized queries and Zustand state management. Built a [WebSocket]() chat with sub-50ms latency. Developed an analytics dashboard using [MongoDB Aggregation](), automating reports and improving decision-making.",
technologies: [
"Reactjs",
"Zustand",
"Nodejs",
"Expressjs",
"MongoDB",
"Socket.io",
"Clerk Auth",
"TailwindCSS",
"Shadcn UI",
],
links: [
{
type: "Live",
href: "https://ichofy.onrender.com/",
icon: <Icons.external className="size-3" />,
},
{
type: "Source",
href: "https://github.com/Rupesh-Piwal/Ichofy",
icon: <Icons.github className="size-3" />,
},
],
image: "/ichofy_thumbnail.png",
video: "",
},
{
title: "Zapchat",
href: "http://zapchat-kbke.onrender.com",
dates: "Nov 2024 - Dec 2024",
active: true,
description:
"Built a scalable MERN chat app with 99.9% uptime, supporting [100+]() users via [Socket.io](). Secured sessions with JWT authentication. Optimized media uploads with Cloudinary, improving performance by 40%. Added [2ms]() haptic feedback using the [Vibration API](), real-time indicators, and read receipts for engagement.",
technologies: [
"Reactjs",
"Zustand",
"Nodejs",
"Expressjs",
"MongoDB",
"Socket.io",
"JWT Auth",
"TailwindCSS",
"Shadcn UI",
],
links: [
{
type: "Live",
href: "http://zapchat-kbke.onrender.com",
icon: <Icons.external className="size-3" />,
},
{
type: "Source",
href: "https://github.com/Rupesh-Piwal/zapchat",
icon: <Icons.github className="size-3" />,
},
],
image: "/zapchat-thumbnail.png",
video: "",
},
{
title: "Talent Hire",
href: "https://talent-hire-xi.vercel.app/",
dates: "Aug 2024 - Sep 2024",
active: true,
description:
"Developed Talent Hire, a scalable Job Board Platform using Next.js, PostgreSQL, Prisma ORM, and Clerk Auth for server-side rendering, efficient data handling, and secure user authentication, contributing to [80+ commits](https://github.com/Rupesh-Piwal/TalentHire/commits/main/).",
technologies: [
"Next.js",
"Typescript",
"PostgreSQL",
"Prisma",
"TailwindCSS",
"Shadcn UI",
],
links: [
{
type: "Live",
href: "https://talent-hire-xi.vercel.app/",
icon: <Icons.external className="size-3" />,
},
{
type: "Source",
href: "https://github.com/Rupesh-Piwal/TalentHire",
icon: <Icons.github className="size-3" />,
},
],
image: "/talenthire_thumbnail.png",
video: "",
},
{
title: "CodeCanvas",
href: "https://code-canvas-alpha1.vercel.app",
dates: "September 2024 - September 2024",
active: true,
description:
"Engineered a Next.js and TypeScript-based code editor with dynamic features including syntax highlighting,customizable themes, padding configurations, and support for over 6 languages, contributing to [35+ commits](https://github.com/Rupesh-Piwal/code-canvas/commits/main/) in a repository.",
technologies: [
"Next.js",
"React",
"Typescript",
"TailwindCSS",
"Shadcn UI",
],
links: [
{
type: "Live",
href: "https://code-canvas-alpha1.vercel.app/",
icon: <Icons.external className="size-3" />,
},
{
type: "Source",
href: "https://github.com/Rupesh-Piwal/code-canvas",
icon: <Icons.github className="size-3" />,
},
],
image: "/canvas.png",
video: "",
},
// {
// title: "llm.report",
// href: "https://llm.report",
// dates: "April 2023 - September 2023",
// active: true,
// description:
// "Developed an open-source logging and analytics platform for OpenAI: Log your ChatGPT API requests, analyze costs, and improve your prompts.",
// technologies: [
// "Next.js",
// "Typescript",
// "PostgreSQL",
// "Prisma",
// "TailwindCSS",
// "Shadcn UI",
// "Magic UI",
// "Stripe",
// "Cloudflare Workers",
// ],
// links: [
// {
// type: "Website",
// href: "https://llm.report",
// icon: <Icons.globe className="size-3" />,
// },
// {
// type: "Source",
// href: "https://github.com/dillionverma/llm.report",
// icon: <Icons.github className="size-3" />,
// },
// ],
// image: "",
// video: "https://cdn.llm.report/openai-demo.mp4",
// },
// {
// title: "Automatic Chat",
// href: "https://automatic.chat",
// dates: "April 2023 - March 2024",
// active: true,
// description:
// "Developed an AI Customer Support Chatbot which automatically responds to customer support tickets using the latest GPT models.",
// technologies: [
// "Next.js",
// "Typescript",
// "PostgreSQL",
// "Prisma",
// "TailwindCSS",
// "Shadcn UI",
// "Magic UI",
// "Stripe",
// "Cloudflare Workers",
// ],
// links: [
// {
// type: "Website",
// href: "https://automatic.chat",
// icon: <Icons.globe className="size-3" />,
// },
// ],
// image: "",
// video:
// "https://pub-83c5db439b40468498f97946200806f7.r2.dev/automatic-chat.mp4",
// },
],
// hackathons: [
// {
// title: "Hack Western 5",
// dates: "November 23rd - 25th, 2018",
// location: "London, Ontario",
// description:
// "Developed a mobile application which delivered bedtime stories to children using augmented reality.",
// image:
// "https://pub-83c5db439b40468498f97946200806f7.r2.dev/hackline/hack-western.png",
// mlh: "https://s3.amazonaws.com/logged-assets/trust-badge/2019/mlh-trust-badge-2019-white.svg",
// links: [],
// },
// {
// title: "Hack The North",
// dates: "September 14th - 16th, 2018",
// location: "Waterloo, Ontario",
// description:
// "Developed a mobile application which delivers university campus wide events in real time to all students.",
// image:
// "https://pub-83c5db439b40468498f97946200806f7.r2.dev/hackline/hack-the-north.png",
// mlh: "https://s3.amazonaws.com/logged-assets/trust-badge/2019/mlh-trust-badge-2019-white.svg",
// links: [],
// },
// {
// title: "FirstNet Public Safety Hackathon",
// dates: "March 23rd - 24th, 2018",
// location: "San Francisco, California",
// description:
// "Developed a mobile application which communcicates a victims medical data from inside an ambulance to doctors at hospital.",
// icon: "public",
// image:
// "https://pub-83c5db439b40468498f97946200806f7.r2.dev/hackline/firstnet.png",
// links: [],
// },
// {
// title: "DeveloperWeek Hackathon",
// dates: "February 3rd - 4th, 2018",
// location: "San Francisco, California",
// description:
// "Developed a web application which aggregates social media data regarding cryptocurrencies and predicts future prices.",
// image:
// "https://pub-83c5db439b40468498f97946200806f7.r2.dev/hackline/developer-week.jpg",
// links: [
// {
// title: "Github",
// icon: <Icons.github className="h-4 w-4" />,
// href: "https://github.com/cryptotrends/cryptotrends",
// },
// ],
// },
// {
// title: "HackDavis",
// dates: "January 20th - 21st, 2018",
// location: "Davis, California",
// description:
// "Developed a mobile application which allocates a daily carbon emission allowance to users to move towards a sustainable environment.",
// image:
// "https://pub-83c5db439b40468498f97946200806f7.r2.dev/hackline/hack-davis.png",
// win: "Best Data Hack",
// mlh: "https://s3.amazonaws.com/logged-assets/trust-badge/2018/white.svg",
// links: [
// {
// title: "Devpost",
// icon: <Icons.globe className="h-4 w-4" />,
// href: "https://devpost.com/software/my6footprint",
// },
// {
// title: "ML",
// icon: <Icons.github className="h-4 w-4" />,
// href: "https://github.com/Wallet6/my6footprint-machine-learning",
// },
// {
// title: "iOS",
// icon: <Icons.github className="h-4 w-4" />,
// href: "https://github.com/Wallet6/CarbonWallet",
// },
// {
// title: "Server",
// icon: <Icons.github className="h-4 w-4" />,
// href: "https://github.com/Wallet6/wallet6-server",
// },
// ],
// },
// {
// title: "ETH Waterloo",
// dates: "October 13th - 15th, 2017",
// location: "Waterloo, Ontario",
// description:
// "Developed a blockchain application for doctors and pharmacists to perform trustless transactions and prevent overdosage in patients.",
// image:
// "https://pub-83c5db439b40468498f97946200806f7.r2.dev/hackline/eth-waterloo.png",
// links: [
// {
// title: "Organization",
// icon: <Icons.github className="h-4 w-4" />,
// href: "https://github.com/ethdocnet",
// },
// ],
// },
// {
// title: "Hack The North",
// dates: "September 15th - 17th, 2017",
// location: "Waterloo, Ontario",
// description:
// "Developed a virtual reality application allowing users to see themselves in third person.",
// image:
// "https://pub-83c5db439b40468498f97946200806f7.r2.dev/hackline/hack-the-north.png",
// mlh: "https://s3.amazonaws.com/logged-assets/trust-badge/2017/white.svg",
// links: [
// {
// title: "Streamer Source",
// icon: <Icons.github className="h-4 w-4" />,
// href: "https://github.com/justinmichaud/htn2017",
// },
// {
// title: "Client Source",
// icon: <Icons.github className="h-4 w-4" />,
// href: "https://github.com/dillionverma/RTSPClient",
// },
// ],
// },
// {
// title: "Hack The 6ix",
// dates: "August 26th - 27th, 2017",
// location: "Toronto, Ontario",
// description:
// "Developed an open platform for people shipping items to same place to combine shipping costs and save money.",
// image:
// "https://pub-83c5db439b40468498f97946200806f7.r2.dev/hackline/hack-the-6ix.jpg",
// mlh: "https://s3.amazonaws.com/logged-assets/trust-badge/2017/white.svg",
// links: [
// {
// title: "Source",
// icon: <Icons.github className="h-4 w-4" />,
// href: "https://github.com/ShareShip/ShareShip",
// },
// {
// title: "Site",
// icon: <Icons.globe className="h-4 w-4" />,
// href: "https://share-ship.herokuapp.com/",
// },
// ],
// },
// {
// title: "Stupid Hack Toronto",
// dates: "July 23rd, 2017",
// location: "Toronto, Ontario",
// description:
// "Developed a chrome extension which tracks which facebook profiles you have visited and immediately texts your girlfriend if you visited another girls page.",
// image:
// "https://pub-83c5db439b40468498f97946200806f7.r2.dev/hackline/stupid-hackathon.png",
// links: [
// {
// title: "Source",
// icon: <Icons.github className="h-4 w-4" />,
// href: "https://github.com/nsagirlfriend/nsagirlfriend",
// },
// ],
// },
// {
// title: "Global AI Hackathon - Toronto",
// dates: "June 23rd - 25th, 2017",
// location: "Toronto, Ontario",
// description:
// "Developed a python library which can be imported to any python game and change difficulty of the game based on real time emotion of player. Uses OpenCV and webcam for facial recognition, and a custom Machine Learning Model trained on a [Kaggle Emotion Dataset](https://www.kaggle.com/c/challenges-in-representation-learning-facial-expression-recognition-challenge/leaderboard) using [Tensorflow](https://www.tensorflow.org/Tensorflow) and [Keras](https://keras.io/). This project recieved 1st place prize at the Global AI Hackathon - Toronto and was also invited to demo at [NextAI Canada](https://www.nextcanada.com/next-ai).",
// image:
// "https://pub-83c5db439b40468498f97946200806f7.r2.dev/hackline/global-ai-hackathon.jpg",
// win: "1st Place Winner",
// links: [
// {
// title: "Article",
// icon: <Icons.globe className="h-4 w-4" />,
// href: "https://syncedreview.com/2017/06/26/global-ai-hackathon-in-toronto/",
// },
// {
// title: "Source",
// icon: <Icons.github className="h-4 w-4" />,
// href: "https://github.com/TinySamosas/",
// },
// ],
// },
// {
// title: "McGill AI for Social Innovation Hackathon",
// dates: "June 17th - 18th, 2017",
// location: "Montreal, Quebec",
// description:
// "Developed realtime facial microexpression analyzer using AI",
// image:
// "https://pub-83c5db439b40468498f97946200806f7.r2.dev/hackline/ai-for-social-good.jpg",
// links: [],
// },
// {
// title: "Open Source Circular Economy Days Hackathon",
// dates: "June 10th, 2017",
// location: "Toronto, Ontario",
// description:
// "Developed a custom admin interface for food waste startup <a href='http://genecis.co/'>Genecis</a> to manage their data and provide analytics.",
// image:
// "https://pub-83c5db439b40468498f97946200806f7.r2.dev/hackline/open-source-circular-economy-days.jpg",
// win: "1st Place Winner",
// links: [
// {
// title: "Source",
// icon: <Icons.github className="h-4 w-4" />,
// href: "https://github.com/dillionverma/genecis",
// },
// ],
// },
// {
// title: "Make School's Student App Competition 2017",
// dates: "May 19th - 21st, 2017",
// location: "International",
// description: "Improved PocketDoc and submitted to online competition",
// image:
// "https://pub-83c5db439b40468498f97946200806f7.r2.dev/hackline/make-school-hackathon.png",
// win: "Top 10 Finalist | Honourable Mention",
// links: [
// {
// title: "Medium Article",
// icon: <Icons.globe className="h-4 w-4" />,
// href: "https://medium.com/make-school/the-winners-of-make-schools-student-app-competition-2017-a6b0e72f190a",
// },
// {
// title: "Devpost",
// icon: <Icons.globe className="h-4 w-4" />,
// href: "https://devpost.com/software/pocketdoc-react-native",
// },
// {
// title: "YouTube",
// icon: <Icons.youtube className="h-4 w-4" />,
// href: "https://www.youtube.com/watch?v=XwFdn5Rmx68",
// },
// {
// title: "Source",
// icon: <Icons.github className="h-4 w-4" />,
// href: "https://github.com/dillionverma/pocketdoc-react-native",
// },
// ],
// },
// {
// title: "HackMining",
// dates: "May 12th - 14th, 2017",
// location: "Toronto, Ontario",
// description: "Developed neural network to optimize a mining process",
// image:
// "https://pub-83c5db439b40468498f97946200806f7.r2.dev/hackline/hack-mining.png",
// links: [],
// },
// {
// title: "Waterloo Equithon",
// dates: "May 5th - 7th, 2017",
// location: "Waterloo, Ontario",
// description:
// "Developed Pocketdoc, an app in which you take a picture of a physical wound, and the app returns common solutions or cures to the injuries or diseases.",
// image:
// "https://pub-83c5db439b40468498f97946200806f7.r2.dev/hackline/waterloo-equithon.png",
// links: [
// {
// title: "Devpost",
// icon: <Icons.globe className="h-4 w-4" />,
// href: "https://devpost.com/software/pocketdoc-react-native",
// },
// {
// title: "YouTube",
// icon: <Icons.youtube className="h-4 w-4" />,
// href: "https://www.youtube.com/watch?v=XwFdn5Rmx68",
// },
// {
// title: "Source",
// icon: <Icons.github className="h-4 w-4" />,
// href: "https://github.com/dillionverma/pocketdoc-react-native",
// },
// ],
// },
// {
// title: "SpaceApps Waterloo",
// dates: "April 28th - 30th, 2017",
// location: "Waterloo, Ontario",
// description:
// "Developed Earthwatch, a web application which allows users in a plane to virtually see important points of interest about the world below them. They can even choose to fly away from their route and then fly back if they choose. Special thanks to CesiumJS for providing open source world and plane models.",
// image:
// "https://pub-83c5db439b40468498f97946200806f7.r2.dev/hackline/space-apps.png",
// links: [
// {
// title: "Source",
// icon: <Icons.github className="h-4 w-4" />,
// href: "https://github.com/dillionverma/earthwatch",
// },
// ],
// },
// {
// title: "MHacks 9",
// dates: "March 24th - 26th, 2017",
// location: "Ann Arbor, Michigan",
// description:
// "Developed Super Graphic Air Traffic, a VR website made to introduce people to the world of air traffic controlling. This project was built completely using THREE.js as well as a node backend server.",
// image:
// "https://pub-83c5db439b40468498f97946200806f7.r2.dev/hackline/mhacks-9.png",
// mlh: "https://s3.amazonaws.com/logged-assets/trust-badge/2017/white.svg",
// links: [
// {
// title: "Source",
// icon: <Icons.github className="h-4 w-4" />,
// href: "https://github.com/dillionverma/threejs-planes",
// },
// ],
// },
// {
// title: "StartHacks I",
// dates: "March 4th - 5th, 2017",
// location: "Waterloo, Ontario",
// description:
// "Developed at StartHacks 2017, Recipic is a mobile app which allows you to take pictures of ingredients around your house, and it will recognize those ingredients using ClarifAI image recognition API and return possible recipes to make. Recipic recieved 1st place at the hackathon for best pitch and hack.",
// image:
// "https://pub-83c5db439b40468498f97946200806f7.r2.dev/hackline/starthacks.png",
// win: "1st Place Winner",
// mlh: "https://s3.amazonaws.com/logged-assets/trust-badge/2017/white.svg",
// links: [
// {
// title: "Source (Mobile)",
// icon: <Icons.github className="h-4 w-4" />,
// href: "https://github.com/mattBlackDesign/recipic-ionic",
// },
// {
// title: "Source (Server)",
// icon: <Icons.github className="h-4 w-4" />,
// href: "https://github.com/mattBlackDesign/recipic-rails",
// },
// ],
// },
// {
// title: "QHacks II",
// dates: "February 3rd - 5th, 2017",
// location: "Kingston, Ontario",
// description:
// "Developed a mobile game which enables city-wide manhunt with random lobbies",
// image:
// "https://pub-83c5db439b40468498f97946200806f7.r2.dev/hackline/qhacks.png",
// mlh: "https://s3.amazonaws.com/logged-assets/trust-badge/2017/white.svg",
// links: [
// {
// title: "Source (Mobile)",
// icon: <Icons.github className="h-4 w-4" />,
// href: "https://github.com/dillionverma/human-huntr-react-native",
// },
// {
// title: "Source (API)",
// icon: <Icons.github className="h-4 w-4" />,
// href: "https://github.com/mattBlackDesign/human-huntr-rails",
// },
// ],
// },
// {
// title: "Terrible Hacks V",
// dates: "November 26th, 2016",
// location: "Waterloo, Ontario",
// description:
// "Developed a mock of Windows 11 with interesting notifications and functionality",
// image:
// "https://pub-83c5db439b40468498f97946200806f7.r2.dev/hackline/terrible-hacks-v.png",
// links: [
// {
// title: "Source",
// icon: <Icons.github className="h-4 w-4" />,
// href: "https://github.com/justinmichaud/TerribleHacks2016-Windows11",
// },
// ],
// },
// {
// title: "Portal Hackathon",
// dates: "October 29, 2016",
// location: "Kingston, Ontario",
// description:
// "Developed an internal widget for uploading assignments using Waterloo's portal app",
// image:
// "https://pub-83c5db439b40468498f97946200806f7.r2.dev/hackline/portal-hackathon.png",
// links: [
// {
// title: "Source",
// icon: <Icons.github className="h-4 w-4" />,
// href: "https://github.com/UWPortalSDK/crowmark",
// },
// ],
// },
// ],
} as const;