-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
908 lines (906 loc) · 38.3 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Victor Immanuel</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="header">
<div class="logo fade-in">
<a href="/index.html"
><svg
width="40"
height="40"
viewBox="0 0 40 40"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M4.17949 10.866L20 1.73205L35.8205 10.866L35.8205 29.134L20 38.2679L4.17949 29.134L4.17949 10.866Z"
stroke="#56D9BE"
stroke-width="3"
/>
<path
d="M19.528 27C19.432 27 19.3573 26.952 19.304 26.856L14.392 16.376C14.3173 16.2053 14.2267 16.0827 14.12 16.008C14.0133 15.9227 13.8853 15.8587 13.736 15.816L13.208 15.72C13.112 15.688 13.064 15.6187 13.064 15.512V15.176C13.064 15.0693 13.1173 15.016 13.224 15.016H19C19.096 15.016 19.144 15.0693 19.144 15.176V15.528C19.144 15.624 19.0907 15.6827 18.984 15.704L18.04 15.864C17.72 15.9173 17.528 16.0133 17.464 16.152C17.4107 16.28 17.4427 16.4667 17.56 16.712L21.224 24.92L19.688 25.832L23.464 16.76C23.6027 16.4507 23.6293 16.2373 23.544 16.12C23.4587 15.992 23.2827 15.912 23.016 15.88L21.928 15.704C21.832 15.6827 21.784 15.6187 21.784 15.512V15.176C21.784 15.0693 21.8373 15.016 21.944 15.016H26.44C26.536 15.016 26.584 15.0693 26.584 15.176V15.528C26.584 15.624 26.5307 15.688 26.424 15.72L25.88 15.816C25.688 15.8587 25.544 15.928 25.448 16.024C25.352 16.1093 25.272 16.2213 25.208 16.36L20.664 26.856C20.6213 26.952 20.5467 27 20.44 27H19.528Z"
fill="#64FFDA"
/>
</svg>
</a>
</div>
<div class="hamburger-menu fade-in">
<div class="block"></div>
<div class="block"></div>
<div class="block"></div>
</div>
<nav>
<ol class="nav-links fade-in">
<li><a href="#ABOUT-ME" class="text-hover-effect">About</a></li>
<li class="exp">
<a href="#EXPERIENCE" class="text-hover-effect">Experience</a>
</li>
<li><a href="#WORK" class="text-hover-effect">Work</a></li>
<li><a href="#CONTACT" class="text-hover-effect">Contact</a></li>
</ol>
<div class="resume hover-effect button">Resume</div>
</nav>
</header>
<!-- End of Header -->
<aside class="side-panel slide-left">
<nav>
<div class="cross">
<div class="line1"></div>
<div class="line2"></div>
</div>
<ol class="nav-links">
<li><a href="#ABOUT-ME" class="text-hover-effect">About</a></li>
<li>
<a href="#EXPERIENCE" class="text-hover-effect">Experience</a>
</li>
<li><a href="#WORK" class="text-hover-effect">work</a></li>
<li><a href="#CONTACT" class="text-hover-effect">contact</a></li>
</ol>
<div class="resume hover-effect button fade-in">Resume</div>
</nav>
</aside>
<!-- End of side panel for navigation -->
<div class="Victor">
<section id="Hero" class="hero">
<h1 class="green-text fade-in">Hi, my name is</h1>
<h2 class="my-name fade-in">Victor Immanuel.</h2>
<h3 class="one-liner fade-in">Designing and Scaling Applications</h3>
<div class="description">
<p class="des fade-in">
A highly skilled and experienced full stack developer with over 2
years of experience learning and building stuff. Proficient in
frontend, backend and cloud with a strong focus on creating scalable
and maintainable applications with great user experience.
</p>
</div>
<a href="https://twitter.com/chrollo1402">
<button class="button hover-effect fade-in">let's connect</button>
</a>
</section>
<!-- End of hero section -->
<section id="ABOUT-ME" class="about-me fade-in">
<div class="text-section">
<h2 class="numbering sub-heading">About Me</h2>
<div class="about-me-des description">
Hi! I'm Victor. I got into tech after reading the book
<span class="green-text">Life 3.0</span> by Max Tegmark. I have
worked as a python programmer at
<span class="green-text">sensel</span> and full stack Developer at
<span class="green-text">Zento</span> and I'm Proficient with
various technologies to build and scale full stack applications,
also design them with Figma. <br />
<br />
I also contribute to open source projects to improve my skills,
network and learn from experts around the world. I've made
contributions to projects like plone, Biodrop etc. When I'm free I
enjoy Playing volleyball, football and cycling long distances.
<br />
<br />
<p>
Here's a detailed list of all the things I've learned as
full-stack developer so far
</p>
</div>
<div class="tech-stack">
<div class="skill-category">
<h4>FrontEnd</h4>
<ol class="skill-list">
<li>JavaScript</li>
<li>Typescript</li>
<li>React.js</li>
<li>Next.js</li>
<li>Remix</li>
<li>TailwindCss</li>
<li>Redux</li>
<li>Material Ui</li>
<li>Shadcd Ui</li>
<li>Figma</li>
</ol>
</div>
<div class="skill-category">
<h4>Backend</h4>
<ol class="skill-list">
<li>python</li>
<li>golang</li>
<li>Node.js</li>
<li>Express.js</li>
<li>hono.js</li>
<li>Django</li>
<li>MongoDB</li>
<li>PostgreSQL</li>
<li>MySQL</li>
<li>redis</li>
<li>Prisma</li>
<li>Mongoose</li>
<li>WebRTC</li>
<li>rabbitmq</li>
</ol>
</div>
<div class="skill-category">
<h4>Devops</h4>
<ol class="skill-list">
<li>AWS</li>
<li>Azure</li>
<li>Digital Ocean</li>
<li>linux</li>
<li>Docker</li>
<li>Kubernetes</li>
<li>Nginx</li>
<li>Serverless</li>
<li>Github actions</li>
</ol>
</div>
</div>
</div>
<div class="image-section">
<div class="frame"></div>
<div class="image"></div>
</div>
</section>
<!-- End of about-me section-->
<section class="experience fade-in" id="EXPERIENCE">
<h2 class="sub-heading numbering">My Experience</h2>
<div class="exp1">
<h3 class="company-name">
<span>Python Programmer</span><br />
<span class="company">
@
<a href="https://www.sensel.in/" class="green-text underlined"
>Sensel</a
>
</span>
</h3>
<h4 class="duration">January - August 2022</h4>
<div class="description">
<p class="des-points">
Developed scripts to streamline MySQL tasks, improving testing
efficiency for GPRS devices.
</p>
<p class="des-points">
Extracted and processed data from various sources, including Excel
sheets, device logs, and ledgers. Executed successful web scraping
tasks using BeautifulSoup, enhancing data gathering and analysis.
</p>
<p class="des-points">
Engineered a script for GPRS testing, integrating hardware control
for real-world simulations. Enabled mode-switching, data
retrieval, and improved accuracy, enhancing comprehensive testing
in a sophisticated and efficient manner.
</p>
</div>
</div>
<hr />
<!-- Experience 2 -->
<div class="exp1">
<h3 class="company-name">
<span>Front End Developer and Ui Designer</span><br />
<span class="company">
@
<a href="https://www.zento.money/" class="green-text underlined"
>Zento</a
>
</span>
</h3>
<h4 class="duration">July - September 2023</h4>
<div class="description">
<p class="des-points">
Utilized
<a
href="https://www.figma.com/file/6HvbUFdfizdu4jvKRXpF2P/neo-Banking-site?type=design&node-id=103%3A19324&mode=design&t=DE3WL6L61KWIBWXR-1"
class="green-text text-hover-effect"
>Figma</a
>
to design and prototype the website, ensuring a user-friendly and
visually appealing interface.
</p>
<p class="des-points">
Developed a dynamic, responsive site with React.js, leveraging
Tailwind CSS for modern and efficient styling.
</p>
<p class="des-points">
Integrated engaging animations using Framer Motion, enhancing
interactivity and delivering a visually appealing user experience.
</p>
</div>
</div>
<hr />
<!-- Experience 3 -->
<div class="exp1">
<h3 class="company-name">
<span>Full Stack Engineer</span><br />
<span class="company">
@
<a
href="https://www.linkedin.com/company/protocorp/posts/?feedView=all"
class="green-text underlined"
>Protocorp</a
>
</span>
</h3>
<h4 class="duration">May 2024 - Present</h4>
<div class="description">
<p class="des-points">
Working on a cool and interesting project
<a href="https://d3d.ai" class="green-text text-hover-effect"
>deepinspect</a
>
building a web application in next.js for sharing, viewing and
analyzing 3d models, then a couple of micro-services for 3D -
Model convertion and Streaming large point clouds.
</p>
<p class="des-points">
went through a large open source codebase (<a
href="https://github.com/potree/potree"
class="green-text text-hover-effect"
>Potree</a
>), modified and integrated it into our application to support
loading large 3d models, added support for 3d tiles using cesium.
</p>
<p class="des-points">
designed the web application in figma and then built it with
next.js and build the microservices with python, then learnt a lot
of new stuff like AWS lambda, SQS, tanstack table, S3 multipart
uploads and more.
</p>
</div>
</div>
</section>
<!-- Projects Section -->
<section class="project-section" id="WORK">
<h2 class="sub-heading numbering fade-in">Projects I've Built</h2>
<ul class="project-container">
<!-- project - 0 -->
<li class="project project-0 fade-in" id="pr1">
<header class="text-hover-effect project-header">CodeArena</header>
<div class="heading-description description">
Built an application similar to leetcode, built all the services
end to end, a next.js web application, where user can practice
coding problems, then built a remote code execution engine with
python that uses docker to run the user submitted code safely in
an isolated environment, used rabbitmq as a messaging queue and
redis for caching the results
</div>
<footer class="tech-used">
<div class="tech">
<ul>
<li>Next.js</li>
<li>python</li>
<li>docker</li>
<li>Kubernetes</li>
<li>redis</li>
<li>rabbitmq</li>
</ul>
</div>
<div class="links">
<div class="source-code">
<a
href="https://github.com/victorchrollo14/codeArena"
class="text-hover-effect"
>
<svg
xmlns="http://www.w3.org/2000/svg"
role="img"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-github"
>
<title>GitHub</title>
<path
d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"
></path>
</svg>
</a>
</div>
<div class="external-link text-hover-effect">
<a
href="https://zento-money.vercel.app/"
class="text-hover-effect"
>
<svg
xmlns="http://www.w3.org/2000/svg"
role="img"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-external-link"
>
<title>External Link</title>
<path
d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"
></path>
<polyline points="15 3 21 3 21 9"></polyline>
<line x1="10" y1="14" x2="21" y2="3"></line>
</svg>
</a>
</div>
</div>
</footer>
</li>
<!-- project - 1 -->
<li class="project project-1 fade-in" id="pr1">
<header class="text-hover-effect project-header">
Zento Money
</header>
<div class="heading-description description">
Developed the responsive frontend of Zento, a neo bank site, using
React.js and Tailwind CSS. Crafted a visually appealing interface
in Figma and implemented smooth animations with Framer Motion for
an enhanced user experience.
</div>
<footer class="tech-used">
<div class="tech">
<ul>
<li>React.js</li>
<li>TailwindCss</li>
<li>FramerMotion</li>
<li>Figma</li>
</ul>
</div>
<div class="links">
<div class="source-code">
<a
href="https://github.com/victorchrollo14/Zento"
class="text-hover-effect"
>
<svg
xmlns="http://www.w3.org/2000/svg"
role="img"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-github"
>
<title>GitHub</title>
<path
d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"
></path>
</svg>
</a>
</div>
<div class="external-link text-hover-effect">
<a href="https://zento.money/" class="text-hover-effect">
<svg
xmlns="http://www.w3.org/2000/svg"
role="img"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-external-link"
>
<title>External Link</title>
<path
d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"
></path>
<polyline points="15 3 21 3 21 9"></polyline>
<line x1="10" y1="14" x2="21" y2="3"></line>
</svg>
</a>
</div>
</div>
</footer>
</li>
<!-- Ecommerce site -->
<li class="project project-1 fade-in" id="pr1">
<header class="text-hover-effect project-header">
Men's Tribe
</header>
<div class="heading-description description">
Leverages the MERN stack for robust architecture. Azure CDN
optimizes image delivery. Backend on Azure ensures security.
Frontend hosted on Vercel for speed. Google and standard
authentication for user login.
</div>
<footer class="tech-used">
<div class="tech">
<ul>
<li>MERN</li>
<li>TailwindCss</li>
<li>Azure</li>
<li>Vercel</li>
<li>Google-Oauth</li>
</ul>
</div>
<div class="links">
<div class="source-code">
<a
href="https://github.com/victorchrollo14/mernEcommerce"
class="text-hover-effect"
>
<svg
xmlns="http://www.w3.org/2000/svg"
role="img"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-github"
>
<title>GitHub</title>
<path
d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"
></path>
</svg>
</a>
</div>
<div class="external-link text-hover-effect">
<a
href="https://menstribe.vercel.app/"
class="text-hover-effect"
>
<svg
xmlns="http://www.w3.org/2000/svg"
role="img"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-external-link"
>
<title>External Link</title>
<path
d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"
></path>
<polyline points="15 3 21 3 21 9"></polyline>
<line x1="10" y1="14" x2="21" y2="3"></line>
</svg>
</a>
</div>
</div>
</footer>
</li>
<!-- quickmeet -->
<li class="project project-2 fade-in" id="pr2">
<header class="text-hover-effect project-header">QuickMeet</header>
<div class="heading-description description">
Instant meetings, no sign-up needed. Harnesses Google OAuth for
secure authentication. Utilizes WebRTC and WebSockets for seamless
real-time video and chat—a swift, efficient collaboration solution
</div>
<footer class="tech-used">
<div class="tech">
<ul>
<li>React.js</li>
<li>Node.js</li>
<li>PostgreSQL</li>
<li>WebSockets</li>
<li>WebRtc</li>
</ul>
</div>
<div class="links">
<div class="source-code">
<a
href="https://github.com/victorchrollo14/QuickMeet"
class="text-hover-effect"
>
<svg
xmlns="http://www.w3.org/2000/svg"
role="img"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-github"
>
<title>GitHub</title>
<path
d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"
></path>
</svg>
</a>
</div>
<div class="external-link text-hover-effect">
<a
href="https://quickmeet-omega.vercel.app/"
class="text-hover-effect"
>
<svg
xmlns="http://www.w3.org/2000/svg"
role="img"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-external-link"
>
<title>External Link</title>
<path
d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"
></path>
<polyline points="15 3 21 3 21 9"></polyline>
<line x1="10" y1="14" x2="21" y2="3"></line>
</svg>
</a>
</div>
</div>
</footer>
</li>
<!-- Project 2 -->
<li class="project project-2 fade-in" id="pr2">
<header class="text-hover-effect project-header">
Water Buisness Landing Page
</header>
<div class="heading-description description">
Crafted a high-converting landing page for a local water delivery
business, showcasing packaged brands like Bisleri. Resulted in
increased sales and attracted more customers to their services.
</div>
<footer class="tech-used">
<div class="tech">
<ul>
<li>React.js</li>
<li>TailwindCss</li>
</ul>
</div>
<div class="links">
<div class="source-code">
<a
href="https://github.com/victorchrollo14/Water-Buisness"
class="text-hover-effect"
>
<svg
xmlns="http://www.w3.org/2000/svg"
role="img"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-github"
>
<title>GitHub</title>
<path
d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"
></path>
</svg>
</a>
</div>
<div class="external-link text-hover-effect">
<a
href="https://immanuel-water-supply.vercel.app/"
class="text-hover-effect"
>
<svg
xmlns="http://www.w3.org/2000/svg"
role="img"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-external-link"
>
<title>External Link</title>
<path
d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"
></path>
<polyline points="15 3 21 3 21 9"></polyline>
<line x1="10" y1="14" x2="21" y2="3"></line>
</svg>
</a>
</div>
</div>
</footer>
</li>
<!-- Project 3 -->
<li class="project project-3 fade-in" id="pr3">
<header class="text-hover-effect project-header">
FrontEnd Mini-Projects
</header>
<div class="heading-description description">
Explore projects including Rock-Paper-Scissors, Analog Clock,
Tic-Tac-Toe, Animated Card Slider, Random Quote Generator,
Calculator, Wack-A-Mole, and Memory Game. Interactive and fun
applications to enjoy!
</div>
<footer class="tech-used">
<div class="tech">
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
</div>
<div class="links">
<div class="source-code">
<a
href="https://github.com/victorchrollo14/Vanilla-Js-Projects"
class="text-hover-effect"
>
<svg
xmlns="http://www.w3.org/2000/svg"
role="img"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-github"
>
<title>GitHub</title>
<path
d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"
></path>
</svg>
</a>
</div>
<div class="external-link text-hover-effect">
<a
href="https://project-links-victorchrollo14.vercel.app/"
class="text-hover-effect"
>
<svg
xmlns="http://www.w3.org/2000/svg"
role="img"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-external-link"
>
<title>External Link</title>
<path
d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"
></path>
<polyline points="15 3 21 3 21 9"></polyline>
<line x1="10" y1="14" x2="21" y2="3"></line>
</svg>
</a>
</div>
</div>
</footer>
</li>
<!-- Project 4 -->
<!-- <li class="project project-4 fade-in" id="pr4"> -->
<!-- <header class="text-hover-effect project-header"> -->
<!-- Scripting and Automation -->
<!-- </header> -->
<!-- <div class="heading-description description"> -->
<!-- As an intern at -->
<!-- <span class="green-text underlined">sensel</span> Developed MySQL -->
<!-- automation scripts for efficient GPRS testing at Sensel. -->
<!-- Engineered a comprehensive GPRS testing script with hardware -->
<!-- control for accurate simulations. -->
<!-- </div> -->
<!-- <footer class="tech-used"> -->
<!-- <div class="tech"> -->
<!-- <ul> -->
<!-- <li>python</li> -->
<!-- <li>DataScraping</li> -->
<!-- <li>MySQL</li> -->
<!-- </ul> -->
<!-- </div> -->
<!-- <div class="links"> -->
<!-- <div class="source-code"> -->
<!-- <a -->
<!-- href="https://github.com/victorchrollo14/Python-Automation-Scripting" -->
<!-- class="text-hover-effect" -->
<!-- > -->
<!-- <svg -->
<!-- xmlns="http://www.w3.org/2000/svg" -->
<!-- role="img" -->
<!-- viewBox="0 0 24 24" -->
<!-- fill="none" -->
<!-- stroke="currentColor" -->
<!-- stroke-width="2" -->
<!-- stroke-linecap="round" -->
<!-- stroke-linejoin="round" -->
<!-- class="feather feather-github" -->
<!-- > -->
<!-- <title>GitHub</title> -->
<!-- <path -->
<!-- d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22" -->
<!-- ></path> -->
<!-- </svg> -->
<!-- </a> -->
<!-- </div> -->
<!-- <div class="external-link text-hover-effect"> -->
<!-- <a -->
<!-- href="https://github.com/victorchrollo14/Python-Automation-Scripting" -->
<!-- class="text-hover-effect" -->
<!-- > -->
<!-- <svg -->
<!-- xmlns="http://www.w3.org/2000/svg" -->
<!-- role="img" -->
<!-- viewBox="0 0 24 24" -->
<!-- fill="none" -->
<!-- stroke="currentColor" -->
<!-- stroke-width="2" -->
<!-- stroke-linecap="round" -->
<!-- stroke-linejoin="round" -->
<!-- class="feather feather-external-link" -->
<!-- > -->
<!-- <title>External Link</title> -->
<!-- <path -->
<!-- d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" -->
<!-- ></path> -->
<!-- <polyline points="15 3 21 3 21 9"></polyline> -->
<!-- <line x1="10" y1="14" x2="21" y2="3"></line> -->
<!-- </svg> -->
<!-- </a> -->
<!-- </div> -->
<!-- </div> -->
<!-- </footer> -->
</li>
</ul>
</section>
<!-- contact me or hire me section -->
<section class="contact-me fade-in" id="CONTACT">
<h2 class="sub-heading numbered-heading">Contact Me</h2>
<p class="description">
Have an exciting project you need help with? Send me an email or
contact me via instant message!
</p>
<button class="button hover-effect">
<a href="mailto:Victor20030214@gmail.com">Say Hello</a>
</button>
</section>
</div>
<!-- Footer section -->
<footer class="footer">
<div class="social-links">
<ul class="aside-links">
<li>
<a
href="https://github.com/victorchrollo14"
class="text-hover-effect"
>
<svg
xmlns="http://www.w3.org/2000/svg"
role="img"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-github"
>
<title>GitHub</title>
<path
d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"
></path>
</svg>
</a>
</li>
<li>
<a href="https://twitter.com/chrollo1402" class="text-hover-effect">
<svg
xmlns="http://www.w3.org/2000/svg"
role="img"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-twitter"
>
<title>Twitter</title>
<path
d="M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"
></path>
</svg>
</a>
</li>
<li>
<a
href="https://www.linkedin.com/in/victor-immanuel-81363a216/"
class="text-hover-effect"
>
<svg
xmlns="http://www.w3.org/2000/svg"
role="img"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-linkedin"
>
<title>LinkedIn</title>
<path
d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"
></path>
<rect x="2" y="9" width="4" height="12"></rect>
<circle cx="4" cy="4" r="2"></circle>
</svg>
</a>
</li>
<li>
<a href="https://codepen.io/your-work" class="text-hover-effect">
<svg
xmlns="http://www.w3.org/2000/svg"
role="img"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-codepen"
>
<title>CodePen</title>
<polygon
points="12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"
></polygon>
<line x1="12" y1="22" x2="12" y2="15.5"></line>
<polyline points="22 8.5 12 15.5 2 8.5"></polyline>
<polyline points="2 15.5 12 8.5 22 15.5"></polyline>
<line x1="12" y1="2" x2="12" y2="8.5"></line>
</svg>
</a>
</li>
<span class="hidden-link">
<a rel="me" href="https://mastodon.social/@victor142"
><img
src="/assets/mastodon.svg"
alt="mastodon"
width="24px"
height="24px"
/></a>
</span>
</ul>
</div>
<aside class="email-link">
<a href="mailto:Victor20030214@gmail.com" class="email-address">
Victor20030214@gmail.com
</a>
</aside>
</footer>
<script src="app.js"></script>
<script defer src="/_vercel/insights/script.js"></script>
</body>
</html>