-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
482 lines (473 loc) · 17.9 KB
/
config.js
File metadata and controls
482 lines (473 loc) · 17.9 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
export const meta = {
title: "Marco Paredes",
author: "Marco Paredes",
description: "I'm a software engineer based in San Diego. Love reading engineering and philosophy books/blogs. I currently work in financial technology at a multinational bank.",
url: process.env.VERCEL_URL ? `https://${process.env.VERCEL_URL}` : `http://localhost:${process.env.PORT || 3000}`,
themeColor: "#091430",
locale: "en_US",
siteName: "Marco Paredes",
accounts: {
github: {
username: "marcopared",
repo: "marcopared.github.io",
},
twitter: {
username: "@marco_pared",
},
discord: {
username: "markermoola",
invite: "https://discord.gg/uxtSMtd2xZ",
id: "544164729354977282",
},
instagram: {
username: "marc.pared",
},
linkedin: {
username: "ma-parede",
},
strava: {
id: "107116948"
},
},
resume: {
file: "/assets/pdfs/Marco_Paredes_resume.pdf",
link: "https://drive.google.com/file/d/14EtrNVn4IjKiH_qf8rq7F0xBuDZBGHy3/view?usp=sharing",
}
};
export const header = {
title: "Marco Paredes",
subtitle: "Software Engineer",
description: meta.description,
code: {
user: "marcopared",
},
};
export const nav = {
left: [
{
href: "/",
title: "Home",
},
{
href: "/repositories/",
title: "GitHub Projects",
}
],
right: [
{
href: "https://linkedin.com/in/ma-parede/",
title: "LinkedIn",
target: "_blank",
},
],
};
export const selfportraits = {
main: {
src: "/assets/selfportraits/main-1.jpg",
alt: "Marco Paredes",
},
};
export const contact = {
links: [
{
href: "mailto:marco.paredes2001@gmail.com",
title: "Email",
icon: (
<svg xmlns="http://www.w3.org/2000/svg" className="h-5 w-5 duration-200 motion-reduce:transition-none" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
<path strokeLinecap="round" strokeLinejoin="round" d="M16 12a4 4 0 10-8 0 4 4 0 008 0zm0 0v1.5a2.5 2.5 0 005 0V12a9 9 0 10-9 9m4.5-1.206a8.959 8.959 0 01-4.5 1.207" />
</svg>
),
},
{
href: `https://x.com/${meta.accounts.twitter.username}`,
title: "Twitter / X",
icon: (
<svg className="h-5 w-5 fill-black duration-200 motion-reduce:transition-none dark:fill-white" fill="currentColor" height="16" viewBox="0 0 22 20">
<path d="M16.99 0H20.298L13.071 8.26L21.573 19.5H14.916L9.702 12.683L3.736 19.5H0.426L8.156 10.665L0 0H6.826L11.539 6.231L16.99 0ZM15.829 17.52H17.662L5.83 1.876H3.863L15.829 17.52Z"></path>
</svg>
),
},
{
href: `https://www.instagram.com/${meta.accounts.instagram.username}/`,
title: "Instagram",
icon: (
<svg fill="none" className="h-5 w-5" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
<g clipPath="url(#g)">
<path d="m11.001 0c-2.9874 0-3.3624 0.013063-4.5357 0.066458-1.171 0.053625-1.9704 0.23902-2.6698 0.51104-0.72349 0.28096-1.3372 0.65679-1.9486 1.2684-0.61188 0.61141-0.98771 1.2251-1.2696 1.9484-0.27271 0.69965-0.45834 1.4992-0.51105 2.6698-0.052251 1.1733-0.066001 1.5485-0.066001 4.5359 0 2.9874 0.013292 3.3612 0.066459 4.5345 0.053855 1.1711 0.23925 1.9704 0.51105 2.6698 0.28119 0.7235 0.65702 1.3372 1.2687 1.9486 0.61119 0.6119 1.2249 0.9886 1.9479 1.2696 0.69988 0.272 1.4994 0.4574 2.6703 0.511 1.1734 0.0534 1.5481 0.0665 4.5353 0.0665 2.9876 0 3.3614-0.0131 4.5348-0.0665 1.171-0.0536 1.9713-0.239 2.6711-0.511 0.7233-0.281 1.3361-0.6577 1.9473-1.2696 0.6119-0.6114 0.9877-1.2251 1.2696-1.9484 0.2704-0.6996 0.456-1.4992 0.511-2.6697 0.0528-1.1734 0.0665-1.5474 0.0665-4.5348 0-2.9874-0.0137-3.3623-0.0665-4.5357-0.055-1.171-0.2406-1.9704-0.511-2.6698-0.2819-0.72348-0.6577-1.3372-1.2696-1.9486-0.6119-0.61188-1.2238-0.98771-1.9479-1.2684-0.7013-0.27202-1.5011-0.45742-2.6721-0.51104-1.1734-0.053396-1.5469-0.066458-4.5353-0.066458h0.0032zm-0.9868 1.9823c0.2929-4.6e-4 0.6197 0 0.9868 0 2.937 0 3.2851 0.01054 4.445 0.06325 1.0725 0.04904 1.6546 0.22825 2.0423 0.37881 0.5134 0.19938 0.8793 0.43771 1.2641 0.82271 0.385 0.385 0.6233 0.75167 0.8232 1.265 0.1506 0.38729 0.33 0.96938 0.3788 2.0419 0.0527 1.1596 0.0642 1.5079 0.0642 4.4436 0 2.9356-0.0115 3.2839-0.0642 4.4435-0.049 1.0725-0.2282 1.6546-0.3788 2.0419-0.1994 0.5133-0.4382 0.8789-0.8232 1.2636-0.385 0.385-0.7505 0.6234-1.2641 0.8227-0.3873 0.1513-0.9698 0.33-2.0423 0.3791-1.1596 0.0527-1.508 0.0641-4.445 0.0641-2.9372 0-3.2854-0.0114-4.445-0.0641-1.0725-0.0495-1.6546-0.2287-2.0426-0.3793-0.51333-0.1994-0.88-0.4377-1.265-0.8227-0.385-0.385-0.62334-0.7508-0.82317-1.2643-0.15057-0.3873-0.33001-0.9694-0.37882-2.0419-0.05271-1.1596-0.06325-1.5079-0.06325-4.4454 0-2.9374 0.01054-3.2839 0.06325-4.4435 0.04904-1.0725 0.22825-1.6546 0.37882-2.0423 0.19937-0.51333 0.43817-0.88 0.82317-1.265 0.38501-0.385 0.75168-0.62333 1.265-0.82316 0.38775-0.15125 0.97007-0.33 2.0426-0.37927 1.0148-0.04584 1.408-0.05959 3.4582-0.06188v0.00275z" fill="url(#f)" />
<path d="m16.849 3.7817c-0.2611 0-0.5163 0.07742-0.7334 0.22249-0.2171 0.14506-0.3863 0.35125-0.4861 0.59245-0.1 0.24126-0.1261 0.50669-0.0751 0.76276s0.1768 0.49124 0.3614 0.67585c0.1846 0.18458 0.4199 0.31025 0.676 0.36113 0.2561 0.05087 0.5215 0.0247 0.7627-0.07531 0.2412-0.09996 0.4473-0.26922 0.5923-0.48634 0.145-0.21715 0.2223-0.4724 0.2222-0.73351 0-0.72873-0.5912-1.32-1.32-1.32v4.6e-4z" fill="url(#e)" />
<path d="m10.977 5.324c-3.1196 0-5.649 2.5293-5.649 5.6489 0 3.1197 2.5294 5.6478 5.649 5.6478 3.1197 0 5.6484-2.5281 5.6484-5.6478 0-3.1196-2.5287-5.6489-5.6484-5.6489zm0.0229 9.2853c1.9934 0 3.6094-1.6159 3.6094-3.6093 0-1.9934-1.616-3.6094-3.6094-3.6094-1.9934 0-3.6094 1.616-3.6094 3.6094 0 1.9934 1.616 3.6093 3.6094 3.6093z" clipRule="evenodd" fill="url(#d)" fillRule="evenodd" />
<path d="m11.001 0c-2.9874 0-3.3624 0.013063-4.5357 0.066458-1.171 0.053625-1.9704 0.23902-2.6698 0.51104-0.72349 0.28096-1.3372 0.65679-1.9486 1.2684-0.61188 0.61141-0.98771 1.2251-1.2696 1.9484-0.27271 0.69965-0.45834 1.4992-0.51105 2.6698-0.052251 1.1733-0.066001 1.5485-0.066001 4.5359 0 2.9874 0.013292 3.3612 0.066459 4.5345 0.053855 1.1711 0.23925 1.9704 0.51105 2.6698 0.28119 0.7235 0.65702 1.3372 1.2687 1.9486 0.61119 0.6119 1.2249 0.9886 1.9479 1.2696 0.69988 0.272 1.4994 0.4574 2.6703 0.511 1.1734 0.0534 1.5481 0.0665 4.5353 0.0665 2.9876 0 3.3614-0.0131 4.5348-0.0665 1.171-0.0536 1.9713-0.239 2.6711-0.511 0.7233-0.281 1.3361-0.6577 1.9473-1.2696 0.6119-0.6114 0.9877-1.2251 1.2696-1.9484 0.2704-0.6996 0.456-1.4992 0.511-2.6697 0.0528-1.1734 0.0665-1.5474 0.0665-4.5348 0-2.9874-0.0137-3.3623-0.0665-4.5357-0.055-1.171-0.2406-1.9704-0.511-2.6698-0.2819-0.72348-0.6577-1.3372-1.2696-1.9486-0.6119-0.61188-1.2238-0.98771-1.9479-1.2684-0.7013-0.27202-1.5011-0.45742-2.6721-0.51104-1.1734-0.053396-1.5469-0.066458-4.5353-0.066458h0.0032zm-0.9868 1.9823c0.2929-4.6e-4 0.6197 0 0.9868 0 2.937 0 3.2851 0.01054 4.445 0.06325 1.0725 0.04904 1.6546 0.22825 2.0423 0.37881 0.5134 0.19938 0.8793 0.43771 1.2641 0.82271 0.385 0.385 0.6233 0.75167 0.8232 1.265 0.1506 0.38729 0.33 0.96938 0.3788 2.0419 0.0527 1.1596 0.0642 1.5079 0.0642 4.4436 0 2.9356-0.0115 3.2839-0.0642 4.4435-0.049 1.0725-0.2282 1.6546-0.3788 2.0419-0.1994 0.5133-0.4382 0.8789-0.8232 1.2636-0.385 0.385-0.7505 0.6234-1.2641 0.8227-0.3873 0.1513-0.9698 0.33-2.0423 0.3791-1.1596 0.0527-1.508 0.0641-4.445 0.0641-2.9372 0-3.2854-0.0114-4.445-0.0641-1.0725-0.0495-1.6546-0.2287-2.0426-0.3793-0.51333-0.1994-0.88-0.4377-1.265-0.8227-0.385-0.385-0.62334-0.7508-0.82317-1.2643-0.15057-0.3873-0.33001-0.9694-0.37882-2.0419-0.05271-1.1596-0.06325-1.5079-0.06325-4.4454 0-2.9374 0.01054-3.2839 0.06325-4.4435 0.04904-1.0725 0.22825-1.6546 0.37882-2.0423 0.19937-0.51333 0.43817-0.88 0.82317-1.265 0.38501-0.385 0.75168-0.62333 1.265-0.82316 0.38775-0.15125 0.97007-0.33 2.0426-0.37927 1.0148-0.04584 1.408-0.05959 3.4582-0.06188v0.00275z" fill="url(#c)" />
<path d="m16.849 3.7817c-0.2611 0-0.5163 0.07742-0.7334 0.22249-0.2171 0.14506-0.3863 0.35125-0.4861 0.59245-0.1 0.24126-0.1261 0.50669-0.0751 0.76276s0.1768 0.49124 0.3614 0.67585c0.1846 0.18458 0.4199 0.31025 0.676 0.36113 0.2561 0.05087 0.5215 0.0247 0.7627-0.07531 0.2412-0.09996 0.4473-0.26922 0.5923-0.48634 0.145-0.21715 0.2223-0.4724 0.2222-0.73351 0-0.72873-0.5912-1.32-1.32-1.32v4.6e-4z" fill="url(#b)" />
<path d="m10.977 5.324c-3.1196 0-5.649 2.5293-5.649 5.6489 0 3.1197 2.5294 5.6478 5.649 5.6478 3.1197 0 5.6484-2.5281 5.6484-5.6478 0-3.1196-2.5287-5.6489-5.6484-5.6489zm0.0229 9.2853c1.9934 0 3.6094-1.6159 3.6094-3.6093 0-1.9934-1.616-3.6094-3.6094-3.6094-1.9934 0-3.6094 1.616-3.6094 3.6094 0 1.9934 1.616 3.6093 3.6094 3.6093z" clipRule="evenodd" fill="url(#a)" fillRule="evenodd" />
</g>
<defs>
<radialGradient id="f" cx="0" cy="0" r="1" gradientTransform="translate(5.8438 23.694) rotate(-90) scale(21.804 20.279)" gradientUnits="userSpaceOnUse">
<stop stopColor="#FFD600" offset="0" />
<stop stopColor="#FF7A00" offset=".5" />
<stop stopColor="#FF0069" offset="1" />
</radialGradient>
<radialGradient id="e" cx="0" cy="0" r="1" gradientTransform="translate(5.8437 23.694) rotate(-90) scale(21.804 20.279)" gradientUnits="userSpaceOnUse">
<stop stopColor="#FFD600" offset="0" />
<stop stopColor="#FF7A00" offset=".5" />
<stop stopColor="#FF0069" offset="1" />
</radialGradient>
<radialGradient id="d" cx="0" cy="0" r="1" gradientTransform="translate(5.8438 23.694) rotate(-90) scale(21.804 20.279)" gradientUnits="userSpaceOnUse">
<stop stopColor="#FF7A00" offset="0" />
<stop stopColor="#fd5" offset=".1" />
<stop stopColor="#FF7A00" offset=".5" />
<stop stopColor="#FF0069" offset="1" />
</radialGradient>
<radialGradient id="c" cx="0" cy="0" r="1" gradientTransform="translate(-3.6855 1.5849) rotate(78.681) scale(9.7463 40.175)" gradientUnits="userSpaceOnUse">
<stop stopColor="#7638FA" offset="0" />
<stop stopColor="#7638FA" offset=".128" />
<stop stopColor="#D300C5" stopOpacity="0" offset="1" />
</radialGradient>
<radialGradient id="b" cx="0" cy="0" r="1" gradientTransform="translate(-3.6856 1.5849) rotate(78.681) scale(9.7463 40.175)" gradientUnits="userSpaceOnUse">
<stop stopColor="#3771C8" offset="0" />
<stop stopColor="#3771C8" offset=".128" />
<stop stopColor="#60f" stopOpacity="0" offset="1" />
</radialGradient>
<radialGradient id="a" cx="0" cy="0" r="1" gradientTransform="translate(-3.6855 1.5849) rotate(78.681) scale(9.7463 40.175)" gradientUnits="userSpaceOnUse">
<stop stopColor="#3771C8" offset="0" />
<stop stopColor="#60f" stopOpacity="0" offset="1" />
</radialGradient>
<clipPath id="g">
<rect width="22" height="22" fill="#fff" />
</clipPath>
</defs>
</svg>
),
},
],
};
export const footer = {
categories: [
{
title: "Important Links",
links: [
{
title: "Home",
href: "/",
},
{
title: "Projects",
href: "/repositories",
},
{
title: "Resume",
href: `${meta.resume.link}`,
target: "_blank",
},
],
},
{
title: "Socials",
links: [
{
title: "LinkedIn",
href: `https://linkedin.com/in/${meta.accounts.linkedin.username}`,
target: "_blank",
},
{
title: "Github",
href: `https://github.com/${meta.accounts.github.username}`,
target: "_blank",
},
{
title: "Instagram",
href: `https://instagram.com/${meta.accounts.instagram.username}`,
target: "_blank",
},
{
title: "Twitter",
href: `https://twitter.com/${meta.accounts.twitter.username}`,
target: "_blank",
},
{
title: "Strava",
href: `https://www.strava.com/athletes/${meta.accounts.strava.id}`,
target: "_blank",
}
],
},
{
title: "Other",
links: [
{
title: "Contact",
href: "/contact",
},
],
},
],
};
export const experience = [
{
name: "Wells Fargo",
position: "Software Engineer ",
date: "January 2024 - Present",
skills: ["Python", "SQL", "NoSQL", "Azure"],
link: "https://wellsfargo.com/",
icon: "/assets/experience/wellsfargo.svg"
},
{
name: "Qualcomm",
position: "Software Engineering Intern ",
date: "June 2022 - September 2022",
skills: ["Python", "AWS", "SQL", "Git"],
link: "https://www.qualcomm.com/",
icon: "/assets/experience/qualcomm.svg"
},
{
name: "pSemi",
position: "Characterization Engineering Intern",
date: "September 2021 - February 20222",
skills: ["Python", "Excel", "RF Verification"],
link: "https://www.psemi.com/",
icon: "/assets/experience/psemi-full.svg"
},
{
name: "Northrop Grumman",
position: "Software Engineering Intern ",
date: "June 2021 - September 2021",
skills: ["Python", "JavaScript", "Matplotlib"],
link: "https://www.northropgrumman.com/",
icon: "/assets/experience/ng.svg"
},
{
name: "ECE 196 at UCSD",
position: "Engineering Tutor ",
date: "January 2020 - May 2021",
skills: ["C/C++", "Arduino C", "Protothread"],
link: "https://www.ece.ucsd.edu/undergraduate/course-information/hands-courses",
icon: "/assets/experience/ucsd-seal.png"
},
{
name: "CMRR at UCSD",
position: "Undergraduate Researcher ",
date: "September 2019 - March 2020",
skills: ["C/C++", "Arduino C", "Validation"],
link: "https://cmrr.ucsd.edu/",
icon: "/assets/experience/cmrr.jpeg"
}
]
export const technologies = [
{
name: "Python",
icon: "/assets/tech/python.svg",
link: "https://www.python.org/"
},
{
name: "Azure",
icon: "/assets/tech/azure.svg",
link: "https://azure.com"
},
{
name: "Mongo DB",
icon: "/assets/tech/mongodb.svg",
link: "https://mongodb.com"
},
{
name: "REST APIs",
icon: "/assets/tech/rest-api.svg",
link: "https://aws.amazon.com/what-is/restful-api"
},
{
name: "MySQL",
icon: "/assets/tech/mysql.svg",
link: "https://www.mysql.com/",
},
{
name: "AWS",
icon: "/assets/tech/aws.svg",
link: "https://aws.amazon.com/"
},
{
name: "Google Cloud",
icon: "/assets/tech/google-cloud.svg",
link: "https://cloud.google.com/"
},
{
name: "Firebase",
icon: "/assets/tech/firebase.svg",
link: "https://firebase.google.com/"
},
{
name: "Javascript",
icon: "/assets/tech/javascript.svg",
link: "https://www.javascript.com/",
},
{
name: "React",
icon: "/assets/tech/react.svg",
link: "https://reactjs.org/",
},
{
name: "Next.js",
icon: "/assets/tech/next.svg",
class: "invert-0 dark:invert",
link: "https://nextjs.org/",
},
{
name: "Flask",
icon: "/assets/tech/flask.svg",
link: "https://flask.palletsprojects.com//"
},
{
name: "FastAPI",
icon: "/assets/tech/fastapi.svg",
link: "https://fastapi.tiangolo.com/"
},
{
name: "Plotly",
icon: "/assets/tech/plotly.svg",
link: "https://plotly.com/"
},
{
name: "Vercel",
icon: "/assets/tech/vercel.svg",
class: "invert-0 dark:invert",
link: "https://vercel.com/",
},
{
name: "Typescript",
icon: "/assets/tech/typescript.svg",
link: "https://www.typescriptlang.org/",
},
{
name: "Node.js",
icon: "/assets/tech/nodejs.svg",
link: "https://nodejs.org/",
},
// {
// name: "Express.js",
// icon: "/assets/tech/express.svg",
// class: "invert-0 dark:invert",
// link: "https://expressjs.com/",
// },
{
name: "NPM",
icon: "/assets/tech/npm.svg",
link: "https://www.npmjs.com/",
},
{
name: "Java",
icon: "/assets/tech/java.svg",
link: "https://www.java.com/"
},
// {
// name: "PNPM",
// icon: "/assets/tech/pnpm.svg",
// link: "https://pnpm.io/",
// },
{
name: "Git",
icon: "/assets/tech/git.svg",
link: "https://git-scm.com/",
},
{
name: "Github",
icon: "/assets/tech/github.svg",
class: "dark:invert-0 invert",
link: "https://github.com",
},
{
name: "Linux",
icon: "/assets/tech/linux.svg",
link: "https://www.linux.org/"
},
// {
// name: "GraphQL",
// icon: "/assets/tech/graphql.svg",
// link: "https://graphql.org/",
// },
// {
// name: "Figma",
// icon: "/assets/tech/figma.svg",
// link: "https://figma.com/",
// },
// {
// name: "Webpack",
// icon: "/assets/tech/webpack.svg",
// link: "https://webpack.js.org/",
// },
// {
// name: "Turborepo",
// icon: "/assets/tech/turborepo.svg",
// link: "https://turbo.build/",
// },
// {
// name: "Deno",
// icon: "/assets/tech/deno.svg",
// link: "https://deno.land/",
// },
{
name: "C++",
icon: "/assets/tech/cpp.svg",
},
// {
// name: "Discord.js",
// icon: "/assets/tech/discordjs.svg",
// link: "https://discord.js.org/",
// },
// {
// name: "Rollup",
// icon: "/assets/tech/rollup.svg",
// link: "https://rollupjs.org/",
// },
{
name: "Docker",
icon: "/assets/tech/docker.svg",
link: "https://www.docker.com/",
},
// {
// name: "Astro",
// icon: "/assets/tech/astro.svg",
// class: "invert-0 dark:invert",
// link: "https://astro.build/",
// },
// {
// name: "ESlint",
// icon: "/assets/tech/eslint.svg",
// link: "https://eslint.org/",
// },
{
name: "PyTorch",
icon: "/assets/tech/pytorch.svg",
link: "https://pytorch.org/"
},
{
name: "Pandas",
icon: "/assets/tech/pandas.svg",
link: "https://pandas.pydata.org/"
},
{
name: "NumPy",
icon: "/assets/tech/numpy.svg",
link: "https://numpy.org/"
},
{
name: "Matplotlib",
icon: "/assets/tech/matplotlib.svg",
link: "https://matplotlib.org/"
},
{
name: "MATLAB",
icon: "/assets/tech/matlab.svg",
link: "https://www.mathworks.com/products/matlab.html"
},
{
name: "Jupyter",
icon: "/assets/tech/jupyter.svg",
link: "https://jupyter.org/"
},
{
name: "OpenCV",
icon: "/assets/tech/opencv.svg",
link: "https://opencv.org/"
},
];
export const files = {
resume: "/assets/pdfs/Marco_Paredes_resume.pdf",
resumeLink: "https://drive.google.com/file/d/1kbg2ibnhtPwYnI1qPxypDntEo8ILGLiI/view?usp=sharing",
}