-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
783 lines (751 loc) · 20.4 KB
/
config.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
const dayjs = require('dayjs');
const kids = [{ name: 'Hamza' }, { name: 'Belal' }];
const skills = [
{
title: 'Front-end',
skills: [
{
title: 'HTML',
icon: 'html5',
url: 'https://en.wikipedia.org/wiki/HTML',
},
{
title: 'CSS',
icon: 'css3-alt',
url: 'https://en.wikipedia.org/wiki/CSS',
},
{
title: 'Sass',
icon: 'sass',
url: 'https://sass-lang.com/#',
},
{
title: 'Javascript',
icon: 'js-square',
url: 'https://www.javascript.com/',
},
{
title: 'Typescript',
icon: 'ts',
url: 'https://www.typescriptlang.org/',
},
{
title: 'ReactJS',
icon: 'react',
url: 'https://reactjs.org/',
},
],
},
{
title: 'Back-end',
skills: [
{
title: 'NodeJS',
icon: 'node-js',
url: 'https://nodejs.org/en/',
},
{
title: 'PHP',
icon: 'php',
url: 'https://www.php.net/',
},
{
title: 'Laravel',
icon: 'laravel',
url: 'https://laravel.com/',
},
],
},
{
title: 'Database',
skills: [
{
title: 'MySQL',
icon: 'database fa',
url: 'https://www.mysql.com/',
},
{
title: 'MongoDB',
icon: 'database fa',
url: 'https://www.mongodb.com/',
},
],
},
// {
// title: 'Mobile',
// skills: [
// {
// title: 'React Native',
// icon: 'react',
// url: 'https://reactnative.dev/',
// },
// ],
// },
{
title: 'Other',
skills: [
{
title: 'Wordpress',
icon: 'wordpress',
url: 'https://wordpress.org/',
},
{
title: 'Gatsby',
icon: 'rocket fa',
url: 'https://www.gatsbyjs.org/',
},
{
title: 'GraphQL',
icon: 'graphql fa',
url: 'https://graphql.org/',
},
{
title: 'ElectronJS',
icon: 'desktop fa',
url: 'https://www.electronjs.org/',
},
{
title: 'Linux',
icon: 'linux',
url: 'https://www.linux.org/',
},
{
title: 'Git',
icon: 'git',
url: 'https://git-scm.com/',
},
{
title: 'Photoshop',
icon: 'adobe',
url: 'https://www.adobe.com/mena_en/products/photoshopfamily.html',
},
],
},
];
const interests = [
{
url: '#',
title: 'Blogging',
sites: [
{
url: 'https://moatazworld.wordpress.com/',
title: 'moatazworld',
},
{
url: 'https://caramellaapp.com/moatazmohammady',
title: 'caramellaapp',
},
{
url: 'https://dev.to/moatazabdalmageed',
title: 'dev.to',
},
],
},
{
url: 'https://www.goodreads.com/user/show/92723087-moataz-mohammady',
title: 'Reading',
},
{
url: '#',
title: 'Running && Walking in the countryside with my family or friends.',
},
];
const socialLinks = {
github: {
icon: 'fa-github',
name: 'Github',
url: 'https://github.com/MoatazAbdAlmageed',
show: true,
},
linkedin: {
icon: 'fa-linkedin',
url: 'https://www.linkedin.com/in/moatazabdelmageed',
show: true,
},
stackoverflow: {
icon: 'fa-stack-overflow',
url: 'https://stackoverflow.com/users/2524043/moataz-mohammady',
show: false,
},
codepen: {
icon: 'fa-codepen',
url: 'https://codepen.io/Moataz-Mohammady/pens/public',
},
edabit: {
icon: 'fa-trophy',
name: 'edabitK',
url: 'https://edabit.com/user/NcL6egjCcAi5zR9k2',
show: false,
},
behance: {
icon: 'fa-behance',
url: 'https://www.behance.net/moatazmohammady',
show: true,
},
wordpress: {
icon: 'fa-wordpress',
url: 'https://profiles.wordpress.org/moataz-mohammady/',
show: false,
},
goodreads: {
icon: 'fa-book',
url: 'https://www.goodreads.com/user/show/92723087-moataz-mohammady',
show: false,
},
caramellaapp: {
icon: 'fas fa-tint',
url: 'https://caramellaapp.com/moatazmohammady',
show: false,
},
youtube: {
icon: 'fa-youtube',
url: 'https://www.youtube.com/@moatazMohamady',
show: false,
},
upwork: {
icon: 'fa-upwork',
url: 'https://www.upwork.com/freelancers/~014cb5bb210055661c',
show: false,
},
};
// eslint-disable-next-line no-sparse-arrays
const certifications = [
{
place: 'Udemy',
title: 'Introduction to TypeScript',
description:
'This certificate above verifies that Moataz Mohammady successfully completed the course Introduction to TypeScript on 07/26/2021',
url: 'https://udemy-certificate.s3.amazonaws.com/pdf/UC-f4d3813f-511b-405d-971b-b0f88039ec7b.pdf',
issued: 'July 2021',
},
{
place: 'Udacity',
title: 'Web Development Professional',
description: 'Nanodegree',
url: 'https://graduation-api.udacity.com/api/certificate/A57FXWSR/download',
issued: 'Aug 2020',
},
{
place: 'futurelearn.com',
title: "BASIC ENGLISH 2: PRE-INTERMEDIATE KING'S COLLEGE LONDON",
description:
'This online course helped you to demonstrate understanding of language that can help you progress along the path to studying at a university.',
url: 'https://www.futurelearn.com/certificates/d829clk',
issued: 'Jan 2020',
},
{
place: 'Udacity',
title: 'Front End Development Track',
description: 'One Million Arab Coders',
url: 'https://s3-us-west-2.amazonaws.com/udacity-printer/production/certificates/8274026e-a9af-49ba-b82b-66b5824b65fe.pdf',
issued: 'May 2019',
},
{
place: 'futurelearn.com',
title: "BASIC ENGLISH 1: ELEMENTARY KING'S COLLEGE LONDON",
description:
'This course helped you develop your use of English in a range of everyday situations and built your confidence by improving your listening skills.',
url: 'https://www.futurelearn.com/certificates/tl15gwi',
issued: 'Dec 2018',
},
{
place: 'Freecodecamp',
title: 'Responsive Web Design',
description:
'Developer Certification, representing approximately 300 hours of coursework',
url: 'https://www.freecodecamp.org/certification/fcc319f679c/responsive-web-design',
issued: 'Jun 2018',
},
,
{
place: 'Sololearn',
title: 'HTML Fundamentals course',
url: 'https://www.sololearn.com/Certificate/1014-1342830/pdf/',
issued: 'Jan 2017',
},
,
{
place: 'Sololearn',
title: 'PHP Fundamentals course',
url: 'https://www.sololearn.com/Certificate/1059-1342830/pdf/',
issued: 'July 2016',
},
,
{
place: 'Sololearn',
title: 'JavaScript Fundamentals course',
url: 'https://www.sololearn.com/Certificate/1024-1342830/pdf/',
issued: 'Sept 2016',
},
];
const colors = [
{
primary: '#4b4b4b',
secondary: '#f09733',
}, //sublime
{
primary: '#252526',
secondary: '#007acc',
}, //vscode
{
primary: '#4d4d4d',
secondary: '#22a3dc',
}, //brackets
{
primary: '#24292e',
secondary: '#2ea44f',
}, //github
{
primary: '#000000',
secondary: '#e16259',
}, //notion
// { primary: '#DC2167', secondary: '#0F1237' },
// { primary: '#CD2731', secondary: '#96CBBB' },
// { primary: '#E9C121', secondary: '#010101' },
// { primary: '#EEC710', secondary: '#0D1239' },
// { primary: '#1D3D59', secondary: '#FE6F42' },
// { primary: '#DFB891', secondary: '#1D817F' },
// { primary: '#CE9CAA', secondary: '#1769A4' },
// { primary: '#782049', secondary: '#1E2963' },
// { primary: '#7F307F', secondary: '#6781B3' },
// { primary: '#1D3B45', secondary: '#C65F1D' },
// { primary: '#1E1E1E', secondary: '#D5A06B' },
// { primary: '#D5D274', secondary: '#196537' },
// { primary: '#C43C9A', secondary: '#FFE005' },
// { primary: '#D01B3B', secondary: '#4104C6' },
// { primary: '#1FBBB4', secondary: '#1979A1' },
// { primary: '#316072', secondary: '#F67D80' },
// { primary: '#54BABF', secondary: '#ADDBD9' },
// { primary: '#99BC44', secondary: '#DB2977' },
];
const projects = [
{
title: 'Quranst Website',
url: 'https://quranst.com/',
tools: ['WordPress'],
icon: 'fa-wordpress',
year: '2024',
show: true,
description: 'Website for Quranst Institute',
}, {
title: 'Diwan Academy Website',
url: 'https://diwanacademy.net/',
tools: ['WordPress'],
icon: 'fa-wordpress',
year: '2024',
show: true,
description: 'Website for diwan academy',
},
{
title: 'Alawal Academy Website',
url: 'https://alawalacademy.com/',
tools: ['WordPress'],
icon: 'fa-wordpress',
year: '2024',
show: true,
description: 'Website for alawal academy',
},
{
title: 'Ahlan Academy Website',
url: 'https://ahlanacademy.net/',
tools: ['WordPress'],
icon: 'fa-wordpress',
year: '2024',
show: true,
description: 'Website for ahlan academy',
},
{
title: 'Inarah Academy Website',
url: 'https://inarahacademy.com/',
tools: ['WordPress'],
icon: 'fa-wordpress',
year: '2024',
show: true,
description: 'Website for inarah academy',
},
{
title: 'Quran Spring Website',
url: 'https://quranspring.com/',
tools: ['WordPress'],
icon: 'fa-wordpress',
year: '2023',
show: true,
description: 'Website for Quran Spring company',
},
{
title: 'Quran Moddaker Website',
url: 'https://quranmoddaker.com/',
tools: ['WordPress'],
icon: 'fa-wordpress',
year: '2023',
show: true,
description: 'Website for Quran Moddaker company',
},
{
title: 'Azan Al Quran Website',
url: 'https://azanalquran.com/',
tools: ['WordPress'],
icon: 'fa-wordpress',
year: '2023',
show: true,
description: 'Website for Azan Al Quran company',
},
{
title: 'RTC Neklawy Website',
url: 'https://rtcneklawy.com/',
tools: ['WordPress'],
icon: 'fa-wordpress',
year: '2020',
show: true,
description: 'Website for RTC Neklawy company',
},
{
title: 'Bein Quran Website',
url: 'https://beinquran.com/',
tools: ['WordPress'],
icon: 'fa-wordpress',
year: '2020',
show: true,
description: 'Maintenance for Bein Quran website',
},
{
title: 'Quran Spirit website',
url: 'https://quranspirit.com/',
tools: ['WordPress'],
icon: 'fa-wordpress',
year: '2022',
show: true,
description: 'Maintenance for Quran Spirit website',
},
{
title: 'Sahwa Website',
url: 'http://sahwa-candy.com/',
tools: ['WordPress', 'woocommerce'],
icon: 'fa-wordpress',
year: '2021',
show: true,
description: 'Website for Sahwa company',
},
{
title: 'moneyManger',
url: 'https://github.com/MoatazAbdAlmageed/adonis-moneyManger',
tools: ['adonis', 'mysql', 'TypeScript'],
icon: 'fa-nodejs',
year: '2021',
show: true,
description: 'simple moneyManger using adonisJs',
},
{
title: 'Az-Translation',
url: 'https://az-translation.com/',
tools: ['WordPress'],
icon: 'fa-wordpress',
year: '2017',
show: false,
description: 'Website for Az-Translation company',
},
{
title: 'CodingDir',
url: 'https://codingdir.gatsbyjs.io/',
icon: 'fa-globe',
tools: ['gatsbyjs', 'chakra-ui'],
year: '2021',
show: true,
description: 'Simple website for list Youtube channels (Arabic,English)',
},
{
title: 'News aggregator',
url: 'https://github.com/MoatazAbdAlmageed/news-server',
demo: 'https://www.loom.com/share/1522833ee84e403588bf6cacb0629aea',
icon: 'fa-globe',
tools: ['laravel', 'chakra-ui', 'react'],
year: '2023',
show: true,
description: 'News aggregator',
server: 'https://github.com/MoatazAbdAlmageed/news-server',
client: 'https://github.com/MoatazAbdAlmageed/news-client',
},
];
const jobs = [
{
company: 'Wuilt',
logo: 'https://assets-global.website-files.com/614319338322d2f96eb4dd96/615c930a565cd057bcdc8df3_Wuilt%20Logo%20W%20Colored.svg',
url: 'http://wuilt.com/',
technologies: [
'HTML',
'CSS',
'Javascript',
'typescript',
'react',
'PHP',
'mysql',
'Laravel',
'wordPress',
'graphql',
'nodejs',
'mongodb',
],
period: '',
startDate: dayjs('2020-01-01'),
endDate: dayjs(),
present: true,
occupation: 'Backend web developer',
responsibilities: [
"As a Back End Developer at Wuilt, I'm responsible for developing and maintaining web applications using PHP and Laravel. My duties include designing, coding, testing, debugging, documenting software applications; creating databases; writing scripts to automate processes; developing APIs; optimizing performance; and troubleshooting system issues. I also collaborate with other developers and designers to ensure a seamless user experience.",
],
description: '',
projects: [
{
name: 'Wuilt blog',
url: 'https://wuilt.com/blog/ar/',
technologies: ['WordPress'],
},
{
name: 'Wuilt Builder',
url: 'https://app.wuilt.com/',
technologies: ['PHP', 'Laravel', 'reactJS'],
},
{
name: 'Wuilt Store',
url: 'http://store.wuilt.com/',
technologies: ['nodeJS', 'mondoDB', 'graphql', 'reactJS'],
},
],
},
{
company: 'camelCase',
logo: 'https://camelcasetech.com/assets/img/logo_camelcasetech.png',
technologies: ['HTML', 'CSS', 'Javascript', 'PHP', 'mysql', 'Laravel'],
responsibilities: [
'Develop new user-facing features',
'Build reusable code and libraries for future use',
'Designing and managing the website back-end including database and server integration.',
],
url: 'https://camelcasetech.com/',
period: 'May 2018 - Dec 2019',
startDate: dayjs('2018-05-01'),
endDate: dayjs('2019-12-30'),
occupation: 'Backend web developer',
description: '',
projects: [
{
name: 'skilledmatrix.com',
url: 'http://skilledmatrix.com/',
technologies: ['PHP', 'Laravel'],
},
{
name: 'skillsbuilderpro.com',
url: 'http://skillsbuilderpro.com/',
technologies: ['PHP', 'Zend'],
},
{
name: 'knowledgeworkerspro.com',
url: 'http://knowledgeworkerspro.com/',
technologies: ['PHP', 'Zend'],
},
],
},
{
company: 'Nile Bits',
logo: 'https://www.nilebits.com/wp-content/uploads/2020/09/styick.png',
url: 'https://www.nilebits.com/',
technologies: ['HTML', 'CSS', 'Javascript', 'angularjs', 'angular'],
period: 'Jan 2017 - Apr 2018',
startDate: dayjs('2017-01-1'),
endDate: dayjs('2018-04-30'),
occupation: 'Front-End developer',
responsibilities: [
'Created custom AngularJS components for internal framework',
'Build reusable code and libraries for future use',
'Collaborate with other team members and stakeholders',
],
description: '',
projects: [
{
name: 'netscribe',
url: 'https://viqsolutions.com/solutions/netscribe/',
technologies: ['angularjs'],
},
],
},
{
company: 'TIE',
logo: 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSAHrk6z4AQPTd5-eq4Iolv8SZM9MdDjPLQeg&s',
url: 'http://tie.com.eg/',
technologies: [
'HTML',
'CSS',
'Javascript',
'PHP',
'mysql',
'Laravel',
'rails',
'angularjs',
],
period: 'Sep 2016 - Jan 2017',
startDate: dayjs('2016-08-1'),
endDate: dayjs('2017-01-01'),
occupation: 'WordPress developer',
responsibilities: [
'Generating WordPress themes and plugins.',
'Troubleshooting content issues.',
'Conducting website performance tests.',
],
description: '',
projects: [
{
name: 'la creation',
url: 'https://www.picuki.com/profile/la__creation',
technologies: ['PHP', 'Wordpress'],
},
{
name: 'Transportation project',
url: '#',
technologies: ['Ruby on Rails', 'angularjs'],
},
],
},
{
company: 'EgyCoders',
url: 'http://www.egycoders.com/',
technologies: ['HTML', 'CSS', 'Javascript', 'angularjs'],
period: 'Mar 2016 - Jun 2016',
startDate: dayjs('2016-03-1'),
endDate: dayjs('2016-06-01'),
occupation: 'Front-End developer',
responsibilities: [
'Develop new user-facing features',
'Assure that all user input is validated before submitting to back-end',
],
description: '',
projects: [
{
name: 'hotel reservation project',
url: '#',
technologies: ['angularjs'],
},
],
},
{
company: 'Orchtech',
logo: 'https://cdn.shortpixel.ai/spai/w_491+q_lossy+ret_img+to_webp/https://orchtech.com/wp-content/uploads/2019/07/orchtech_Logo-01.png',
url: 'https://www.orchtech.com/',
technologies: ['HTML', 'CSS', 'Javascript', 'PHP', 'mysql', 'wordPress'],
period: 'Dec 2015 - May 2016',
startDate: dayjs('2015-12-01'),
endDate: dayjs('2016-05-01'),
occupation: 'WordPress Developer',
responsibilities: [
'Generating WordPress themes and plugins.',
'Troubleshooting content issues.',
'Conducting website performance tests.',
],
description: '',
projects: [
{
name: 'sevensprings.ch',
url: 'https://sevensprings.ch/',
technologies: ['PHP', 'Wordpress'],
},
{
name: 'shapwasco.com',
url: 'http://shapwasco.com.eg',
technologies: ['PHP', 'Wordpress'],
},
{
name: 'uacciap.org',
url: 'http://uacciap.org',
technologies: ['PHP', 'Wordpress'],
},
],
},
{
company: 'Leogami',
logo: 'https://leogami.com/wp-content/webpc-passthru.php?src=https://leogami.com/wp-content/uploads/2021/10/The-Logo-H-white-1.png&nocache=1',
url: 'http://leogami.com/',
technologies: ['HTML', 'CSS', 'Javascript', 'PHP', 'mysql', 'wordPress'],
period: 'Oct 2015 - Nov 2015',
startDate: dayjs('2015-08-01'),
endDate: dayjs('2015-11-01'),
occupation: 'WordPress Developer',
responsibilities: [
'Designing and building the website front-end.',
'Creating the website architecture.',
'Generating WordPress themes and plugins.',
],
description: '',
projects: [
{
name: 'contraplanii',
url: 'http://www.contraplanii.com',
icon: 'fa-globe',
tools: ['wordpress'],
year: '2015',
show: true,
description: 'contraplanii website',
},
{
name: 'https://fiestaegypt.com/',
url: 'http://www.fiestaegypt.com',
icon: 'fa-globe',
tools: ['wordpress'],
year: '2015',
show: true,
description: 'fiestaegypt website',
},
],
},
/* ... */
];
module.exports = {
siteTitle: 'Moataz Mohammady Resume', // <title>
manifestName: 'Resume',
manifestShortName: 'Moataz Mohammady', // max 12 characters
manifestStartUrl: 'https://moatazabdalmageed.github.io/',
manifestBackgroundColor: '#1D3D59',
manifestThemeColor: '#FE6F42',
manifestDisplay: 'standalone',
manifestIcon: 'src/assets/img/website-icon.png',
pathPrefix: '/', // This path is subpath of your hosting https://domain/portfolio
firstName: 'Moataz',
lastName: 'Mohammady',
githubUsername: 'MoatazAbdAlmageed',
position: 'Full stack Web Developer',
site_img:
'https://avatars2.githubusercontent.com/u/17373050?s=460&u=b26d5f5d825283b7b067e10a46add610b512cb26&v=4',
keywords:
'developer,web,code,programming,html,css,js,react,php,mysql,docker,nodejs,mongodb',
TRACKING_ID: process.env.TRACKING_ID,
GITHUB_TOKEN: process.env.GITHUB_TOKEN,
FORMSPREE: 'xgenoded', // create your form from => https://formspree.io
colors,
education: [
{
place: 'Cairo University',
url: 'https://cu.edu.eg/Home',
title: "Bachelor's Degree in Commerce",
period: '2008 - 2013',
},
],
skills,
kids,
volunteerActivities: [
{
title: 'Resala Charity Organization | جمعية رسالة للأعمال الخيرية',
url: 'https://resala.org/',
},
],
interests,
socialLinks,
certifications,
email: '[email protected]',
whatsapp: 'https://wa.me/201150064746',
phone: '+201150064746',
phone2: '+201067869404',
address: 'Mansouria,Giza,Egypt',
location: 'https://goo.gl/maps/QHh4H4eYJMByuneC8',
REACT_APP_SITE_KEY: '6Lep6c0iAAAAAKc4uMszguapnASF0Yi0gdRm9ZGi',
projects,
jobs,
description: `Works as a full-time Web Developer for ${jobs[0].company}. I am looking to take on more work and increase my skills as a Web Developer`,
};