forked from dillionverma/portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.tsx
690 lines (684 loc) · 24.3 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
import { Icons } from "@/components/icons";
import { HomeIcon, NotebookIcon } from "lucide-react";
export const DATA = {
name: "Dillion Verma",
initials: "DV",
url: "https://dillion.io",
location: "San Francisco, CA",
locationLink: "https://www.google.com/maps/place/sanfrancisco",
description:
"Software Engineer turned Entrepreneur. I love building things and helping people. Very active on Twitter.",
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: "/me.png",
skills: [
"React",
"Next.js",
"Typescript",
"Node.js",
"Python",
"Go",
"Postgres",
"Docker",
"Kubernetes",
"Java",
"C++",
],
navbar: [
{ href: "/", icon: HomeIcon, label: "Home" },
{ href: "/blog", icon: NotebookIcon, label: "Blog" },
],
contact: {
email: "[email protected]",
tel: "+123456789",
social: {
GitHub: {
name: "GitHub",
url: "https://dub.sh/dillion-github",
icon: Icons.github,
navbar: true,
},
LinkedIn: {
name: "LinkedIn",
url: "https://dub.sh/dillion-linkedin",
icon: Icons.linkedin,
navbar: true,
},
X: {
name: "X",
url: "https://dub.sh/dillion-twitter",
icon: Icons.x,
navbar: true,
},
Youtube: {
name: "Youtube",
url: "https://dub.sh/dillion-youtube",
icon: Icons.youtube,
navbar: true,
},
email: {
name: "Send Email",
url: "#",
icon: Icons.email,
navbar: false,
},
},
},
work: [
{
company: "Atomic Finance",
href: "https://atomic.finance",
badges: [],
location: "Remote",
title: "Bitcoin Protocol Engineer",
logoUrl: "/atomic.png",
start: "May 2021",
end: "Oct 2022",
description:
"Implemented the Bitcoin discreet log contract (DLC) protocol specifications as an open source Typescript SDK. Dockerized all microservices and setup production kubernetes cluster. Architected a data lake using AWS S3 and Athena for historical backtesting of bitcoin trading strategies. Built a mobile app using react native and typescript.",
},
{
company: "Shopify",
badges: [],
href: "https://shopify.com",
location: "Remote",
title: "Software Engineer",
logoUrl: "/shopify.svg",
start: "January 2021",
end: "April 2021",
description:
"Implemented a custom Kubernetes controller in Go to automate the deployment of MySQL and ProxySQL custom resources in order to enable 2,000+ internal developers to instantly deploy their app databases to production. Wrote several scripts in Go to automate MySQL database failovers while maintaining master-slave replication topologies and keeping Zookeeper nodes consistent with changes.",
},
{
company: "Nvidia",
href: "https://nvidia.com/",
badges: [],
location: "Santa Clara, CA",
title: "Software Engineer",
logoUrl: "/nvidia.png",
start: "January 2020",
end: "April 2020",
description:
"Architected and wrote the entire MVP of the GeForce Now Cloud Gaming internal admin and A/B testing dashboard using React, Redux, TypeScript, and Python.",
},
{
company: "Splunk",
href: "https://splunk.com",
badges: [],
location: "San Jose, CA",
title: "Software Engineer",
logoUrl: "/splunk.svg",
start: "January 2019",
end: "April 2019",
description:
"Co-developed a prototype iOS app with another intern in Swift for the new Splunk Phantom security orchestration product (later publicly demoed and launched at .conf annual conference in Las Vegas). Implemented a realtime service for the iOS app in Django (Python) and C++; serialized data using protobufs transmitted over gRPC resulting in an approximate 500% increase in data throughput.",
},
{
company: "Lime",
href: "https://li.me/",
badges: [],
location: "San Francisco, CA",
title: "Software Engineer",
logoUrl: "/lime.svg",
start: "January 2018",
end: "April 2018",
description:
"Proposed and implemented an internal ruby API for sending/receiving commands to scooters over LTE networks. Developed a fully automated bike firmware update system to handle asynchronous firmware updates of over 100,000+ scooters worldwide, and provide progress reports in real-time using React, Ruby on Rails, PostgreSQL and AWS EC2 saving hundreds of developer hours.",
},
{
company: "Mitre Media",
href: "https://mitremedia.com/",
badges: [],
location: "Toronto, ON",
title: "Software Engineer",
logoUrl: "/mitremedia.png",
start: "May 2017",
end: "August 2017",
description:
"Designed and implemented a robust password encryption and browser cookie storage system in Ruby on Rails. Leveraged the Yahoo finance API to develop the dividend.com equity screener",
},
],
education: [
{
school: "Buildspace",
href: "https://buildspace.so",
degree: "s3, s4, sf1, s5",
logoUrl: "/buildspace.jpg",
start: "2023",
end: "2024",
},
{
school: "University of Waterloo",
href: "https://uwaterloo.ca",
degree: "Bachelor's Degree of Computer Science (BCS)",
logoUrl: "/waterloo.png",
start: "2016",
end: "2021",
},
{
school: "Wilfrid Laurier University",
href: "https://wlu.ca",
degree: "Bachelor's Degree of Business Administration (BBA)",
logoUrl: "/laurier.png",
start: "2016",
end: "2021",
},
{
school: "International Baccalaureate",
href: "https://ibo.org",
degree: "IB Diploma",
logoUrl: "/ib.png",
start: "2012",
end: "2016",
},
],
projects: [
{
title: "Chat Collect",
href: "https://chatcollect.com",
dates: "Jan 2024 - Feb 2024",
active: true,
description:
"With the release of the [OpenAI GPT Store](https://openai.com/blog/introducing-the-gpt-store), I decided to build a SaaS which allows users to collect email addresses from their GPT users. This is a great way to build an audience and monetize your GPT API usage.",
technologies: [
"Next.js",
"Typescript",
"PostgreSQL",
"Prisma",
"TailwindCSS",
"Stripe",
"Shadcn UI",
"Magic UI",
],
links: [
{
type: "Website",
href: "https://chatcollect.com",
icon: <Icons.globe className="size-3" />,
},
],
image: "",
video:
"https://pub-83c5db439b40468498f97946200806f7.r2.dev/chat-collect.mp4",
},
{
title: "Magic UI",
href: "https://magicui.design",
dates: "June 2023 - Present",
active: true,
description:
"Designed, developed and sold animated UI components for developers.",
technologies: [
"Next.js",
"Typescript",
"PostgreSQL",
"Prisma",
"TailwindCSS",
"Stripe",
"Shadcn UI",
"Magic UI",
],
links: [
{
type: "Website",
href: "https://magicui.design",
icon: <Icons.globe className="size-3" />,
},
{
type: "Source",
href: "https://github.com/magicuidesign/magicui",
icon: <Icons.github className="size-3" />,
},
],
image: "",
video: "https://cdn.magicui.design/bento-grid.mp4",
},
{
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;