-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportifolio.html
1007 lines (966 loc) · 37.8 KB
/
portifolio.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
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!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" />
<link
rel="shortcut icon"
href="./css/img/favicon.ico"
type="image/x-icon"
/>
<!-- Swiper CSS -->
<link rel="stylesheet" href="css/swiper-bundle.min.css" />
<!-- CSS -->
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/portifolio-style.css" />
<!-- JavaScript -->
<script src="./js/main.js" defer></script>
<!-- Icones bootstrap -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css"
/>
<title>VF | Portifólio</title>
</head>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #2c3e50;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.containerD {
text-align: center;
color: #333;
}
.containerD img {
max-width: 300px;
height: auto;
margin-bottom: 20px;
}
.containerD h1 {
font-size: 24px;
margin: 0;
color: #ecf0f1;
}
.containerD p {
font-size: 18px;
margin-top: 10px;
color: #ecf0f1;
}
</style>
<body>
<div class="containerD">
<img
src="https://cdn-icons-png.flaticon.com/512/1055/1055646.png"
alt="Trabalhadores em construção"
/>
<h1>Sorry :(, we are undergoing renovations!</h1>
<p>Come back soon to see what's new!.</p>
</div>
<header style="display: none" class="header" id="header">
<nav class="nav container">
<a href="" class="nav__logo"></a>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list grid">
<li class="nav__item">
<a href="/index.html#home" class="nav__link">
<i class="bi bi-house nav__icon"></i> Home
</a>
</li>
<li class="nav__item">
<a href="/index.html#about" class="nav__link">
<i class="bi bi-person nav__icon"></i> About
</a>
</li>
<li class="nav__item">
<a href="/index.html#skills" class="nav__link">
<i class="bi bi-tools nav__icon"></i> Skills
</a>
</li>
<li class="nav__item">
<a href="/portifolio.html" class="nav__link">
<i class="bi bi-images nav__icon"></i> Portfolio
</a>
</li>
<!-- <li class="nav__item">
<a href="/index.html#contact" class="nav__link">
<i class="bi bi-send nav__icon"></i> Contact
</a>
</li> -->
</ul>
<i class="bi bi-x nav__close" id="nav-close"></i>
</div>
<div class="nav__btns">
<div class="nav__toggle" id="nav-toggle">
<i class="bi bi-menu-button-wide"></i>
</div>
</div>
</nav>
</header>
<main style="display: none">
<!-- Filtro de Projetos -->
<section
class="filter-section"
style="display: flex; justify-content: center"
>
<div class="container-filter">
<div class="filter-card">
<h2>Filter by:</h2>
<div
class="filter-options"
style="
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 0.5rem;
"
>
<!-- FRONT END-->
<div style="display: flex; gap: 0.5rem">
<button class="filter-btn" data-filter="vuejs">
<img
src="https://www.svgrepo.com/show/452130/vue.svg"
alt="VueJ logo"
class="skill_filter"
/>
<span>VueJS</span>
</button>
<button class="filter-btn" data-filter="nuxt">
<img
src="https://www.svgrepo.com/show/373940/nuxt.svg"
alt="nuxt logo"
class="skill_filter"
/>
<span>Nuxt</span>
</button>
<button class="filter-btn" data-filter="react">
<img
src="https://www.svgrepo.com/show/452092/react.svg"
alt="react logo"
class="skill_filter"
/>
<span>React</span>
</button>
<button class="filter-btn" data-filter="tailwind">
<img
src="https://www.svgrepo.com/show/374118/tailwind.svg"
alt="tailwind logo"
class="skill_filter"
/>
<span>Tailwind</span>
</button>
<button class="filter-btn" data-filter="vuetify">
<img
src="https://www.svgrepo.com/show/306946/vuetify.svg"
alt="vuetify logo"
class="skill_filter"
/>
<span>Vuetify</span>
</button>
<button class="filter-btn" data-filter="bootstrap">
<img
src="https://www.svgrepo.com/show/353498/bootstrap.svg"
alt="Bootstrap"
class="skill_filter"
/>
<span>Bootstrap</span>
</button>
<button class="filter-btn" data-filter="pinia">
<img
src="https://www.svgrepo.com/show/407210/pineapple.svg"
alt="pinia"
class="skill_filter"
/>
<span>Pinia</span>
</button>
</div>
<!-- BACKEND -->
<div style="display: flex; gap: 0.5rem">
<button class="filter-btn" data-filter="node">
<img
src="https://www.svgrepo.com/show/452075/node-js.svg"
alt="node logo"
class="skill_filter"
/>
<span>Nodejs</span>
</button>
<button class="filter-btn" data-filter="express">
<img
src="https://www.svgrepo.com/show/330398/express.svg"
alt="express logo"
class="skill_filter"
/>
<span>Express</span>
</button>
<button class="filter-btn" data-filter="firebase'">
<img
src="https://www.svgrepo.com/show/373595/firebase.svg"
alt="firebase logo"
class="skill_filter"
/>
<span>Firebase</span>
</button>
<button class="filter-btn" data-filter="socket">
<img
src="https://www.svgrepo.com/show/306753/socket-dot-io.svg"
alt="socket logo"
class="skill_filter"
/>
<span>Socket.io</span>
</button>
<button class="filter-btn" data-filter="mongodb">
<img
src="https://www.svgrepo.com/show/373845/mongo.svg"
alt="mongo logo"
class="skill_filter"
/>
<span>Mongo DB</span>
</button>
<button class="filter-btn" data-filter="sqlite'">
<img
src="https://www.svgrepo.com/show/508807/dbs-sqlite.svg"
alt="sqlite logo"
class="skill_filter"
/>
<span>sqlite</span>
</button>
<button class="filter-btn" data-filter="ejs'">
<img
src="https://www.svgrepo.com/show/373574/ejs.svg"
alt="ejs logo"
class="skill_filter"
/>
<span>EJS</span>
</button>
</div>
<!-- OTHERS -->
<div style="display: flex; gap: 0.5rem">
<button class="filter-btn" data-filter="toast">
<img
src="https://www.svgrepo.com/show/447091/toast.svg"
alt="toast logo"
class="skill_filter"
/>
<span>Toast</span>
</button>
<button class="filter-btn" data-filter="aws">
<img
src="https://www.svgrepo.com/show/448266/aws.svg"
alt="toast logo"
class="skill_filter"
/>
<span>AWS</span>
</button>
<button class="filter-btn" data-filter="openai">
<img
src="https://www.svgrepo.com/show/486520/ai.svg"
alt="toast logo"
class="skill_filter"
/>
<span>Open AI</span>
</button>
<button class="filter-btn" data-filter="bycript">
<img
src="https://www.svgrepo.com/show/529520/code-square.svg"
alt="bycript logo"
class="skill_filter"
/>
<span>Bycript</span>
</button>
<button class="filter-btn" data-filter="leaflet">
<img
src="https://www.svgrepo.com/show/532550/map-location-pin.svg"
alt="Leaflet logo"
class="skill_filter"
/>
<span>Leaflet</span>
</button>
<button class="filter-btn" data-filter="compositionapi">
<img
src="https://www.svgrepo.com/show/459015/cog.svg"
alt="mongo logo"
class="skill_filter"
/>
<span>Composition API</span>
</button>
<button class="filter-btn" data-filter="optionsapi">
<img
src="https://www.svgrepo.com/show/446564/cog-small-cog.svg"
alt="firebase logo"
class="skill_filter"
/>
<span>Options API</span>
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Seção de Projetos -->
<section class="projects-section">
<div class="project-container">
<div class="projects-grid">
<!-- Easy bills -->
<div
class="project-card"
data-category="vuejs,firebase,vuex,optionsapi"
>
<img
src="./css/img/easyBills/capa.png"
alt="Project Image"
class="project-img"
/>
<div class="project-info">
<div class="project-title">
<h3>Easy Bills</h3>
<a
style="margin-top: 4px"
href="https://github.com/VitorFerronato/easyBillsApp"
target="_blank"
>
<i class="bi bi-github home__social-icon"></i>
</a>
<a
style="margin-top: 4px"
href="https://easybillsapp.netlify.app/"
target="_blank"
>
<i class="bi bi-caret-right-square home__social-icon"></i>
</a>
</div>
<p class="project-description">
Easy Bills is a responsive web application built with Vue.js
3, Firebase, and Vue animations, designed to simplify your
invoicing and expense tracking needs. With Easy Bill, you can
effortlessly manage your bills and expenses in a reactive and
user-friendly environment.
</p>
<div class="project-tech">
<span class="tech-chip">VueJS</span>
<span class="tech-chip">Firebase</span>
<span class="tech-chip">VueX</span>
<span class="tech-chip">Vue Animations</span>
</div>
</div>
</div>
<!-- Nuxt finances -->
<div
class="project-card"
data-category="nuxt,vuejs,tailwind,compositionapi"
>
<img
src="./css/img/nuxt-finances.png"
alt="Project Image"
class="project-img"
/>
<div class="project-info">
<div class="project-title">
<h3>Nuxt Finances</h3>
<a
style="margin-top: 4px"
href="https://github.com/VitorFerronato/nuxt-finances"
target="_blank"
>
<i class="bi bi-github home__social-icon"></i>
</a>
</div>
<p class="project-description">
Finances is a project designed to help you manage your
personal finances. On the home screen, you will find an
interactive graph that presents an overview of your spending
and expenses. Additionally, you can add your transactions,
keeping an up-to-date record of your finances
</p>
<div class="project-tech">
<span class="tech-chip">Nuxt</span>
<span class="tech-chip">Vue</span>
<span class="tech-chip">Tailwind</span>
<span class="tech-chip">Shadcn</span>
<span class="tech-chip">compositionapi</span>
</div>
</div>
</div>
<!-- Voice gpt -->
<div
class="project-card"
data-category="vuejs,aws,openai,express,compositionapi"
>
<img
src="./css/img/voice-gpt.png"
alt="Project Image"
class="project-img"
/>
<div class="project-info">
<div class="project-title">
<h3>Voice gpt</h3>
<a
style="margin-top: 4px"
href="https://github.com/VitorFerronato/voice-gpt"
target="_blank"
>
<i class="bi bi-github home__social-icon"></i>
</a>
</div>
<p class="project-description">
Voice GTP is an application that allows users to ask questions
and get answers through voice using artificial intelligence.
This project combines modern technologies to offer an
interactive and efficient experience
</p>
<div class="project-tech">
<span class="tech-chip">Vue</span>
<span class="tech-chip">AWS</span>
<span class="tech-chip">Open AI</span>
<span class="tech-chip">Express</span>
</div>
</div>
</div>
<!-- Chat app -->
<div
class="project-card"
data-category="react,nodejs,express,bycript,mongodb,socket,bootstrap"
>
<img
src="./css/img/chatapp.png"
alt="Project Image"
class="project-img"
/>
<div class="project-info">
<div class="project-title">
<h3>Chat app</h3>
<a
style="margin-top: 4px"
href="https://github.com/VitorFerronato/chat-app"
target="_blank"
>
<i class="bi bi-github home__social-icon"></i>
</a>
</div>
<p class="project-description">
This is a real-time chat application where two users can
communicate through messages, register new users, log in, see
other users online, and start a conversation.
</p>
<div class="project-tech">
<span class="tech-chip">React</span>
<span class="tech-chip">NodeJS</span>
<span class="tech-chip">Express</span>
<span class="tech-chip">Bcrypt</span>
<span class="tech-chip">MongoDB</span>
<span class="tech-chip">Socket.io</span>
<span class="tech-chip">Bootstrap</span>
</div>
</div>
</div>
<!-- Nuxt ecommerce -->
<div
class="project-card"
data-category="nuxt,vuejs,vuetify,compositionapi"
>
<img
src="./css/img/nuxt-cart.png"
alt="Project Image"
class="project-img"
/>
<div class="project-info">
<div class="project-title">
<h3>Nuxt e-commerce</h3>
<a
style="margin-top: 4px"
href="https://github.com/VitorFerronato/nuxt-shopping-cart"
target="_blank"
>
<i class="bi bi-github home__social-icon"></i>
</a>
</div>
<p class="project-description">
Simulating an e-commerce, you can list the products, add them
to the cart, see the total, change to dark mode.
</p>
<div class="project-tech">
<span class="tech-chip">Nuxt</span>
<span class="tech-chip">VueJS</span>
<span class="tech-chip">Pinia</span>
<span class="tech-chip">Vuetify</span>
</div>
</div>
</div>
<!-- Nuxt authentication -->
<div
class="project-card"
data-category="vuejs,nuxt,firebase,tailwind,compositionapi"
>
<img src="./css/img/nuxt-autentication.png" class="project-img" />
<div class="project-info">
<div class="project-title">
<h3>Nuxt Authentication</h3>
<a
style="margin-top: 4px"
href="https://github.com/VitorFerronato/nuxt-authentication"
target="_blank"
>
<i class="bi bi-github home__social-icon"></i>
</a>
</div>
<p class="project-description">
Nuxt authentication is a project that allows users to be
created and logged into the application. Each user can have
specific authorizations to access different pages of the
application, ensuring strict control of permissions and
security.
</p>
<div class="project-tech">
<span class="tech-chip">VueJS</span>
<span class="tech-chip">Nuxt</span>
<span class="tech-chip">Firebase</span>
<span class="tech-chip">Tailwind</span>
<span class="tech-chip">Nuxt/ui</span>
<span class="tech-chip">Zod</span>
</div>
</div>
</div>
<!-- Vue form todolist -->
<div class="project-card" data-category="vuejs,compositionapi">
<img src="./css//img/task_app.png" class="project-img" />
<div class="project-info">
<div class="project-title">
<h3>TODO list app</h3>
<a
style="margin-top: 4px"
href="https://github.com/VitorFerronato/todolist-vueform"
target="_blank"
>
<i class="bi bi-github home__social-icon"></i>
</a>
</div>
<p class="project-description">
An application for you to manage your daily tasks.
</p>
<div class="project-tech">
<span class="tech-chip">VueJS</span>
<span class="tech-chip">Vue Form</span>
</div>
</div>
</div>
<!-- Recipe app -->
<div
class="project-card"
data-category="vuejs,compositionapi,nuxt,tailwind"
>
<img src="./css//img/nuxtcipes.png" class="project-img" />
<div class="project-info">
<div class="project-title">
<h3>Nuxtcipes</h3>
<a
style="margin-top: 4px"
href="https://github.com/VitorFerronato/recipe-app"
target="_blank"
>
<i class="bi bi-github home__social-icon"></i>
</a>
</div>
<p class="project-description">
Nuxtcipes is a recipe website, where you can find different
recipes with their ingredients and preparation method.
</p>
<div class="project-tech">
<span class="tech-chip">VueJS</span>
<span class="tech-chip">Nuxt 4</span>
<span class="tech-chip">Tailwind</span>
</div>
</div>
</div>
<!-- tic tac toe -->
<div
class="project-card"
data-category="vuejs,tailwind,compositionapi"
>
<img src="./css/img/tica-tac.png" class="project-img" />
<div class="project-info">
<div class="project-title">
<h3>Tic Tac Toe</h3>
<a
style="margin-top: 4px"
href="https://github.com/VitorFerronato/tic-tac-toe"
target="_blank"
>
<i class="bi bi-github home__social-icon"></i>
</a>
<a
style="margin-top: 4px"
href="https://tictacmastervue.netlify.app"
target="_blank"
>
<i class="bi bi-caret-right-square home__social-icon"></i>
</a>
</div>
<p class="project-description">The classic tic tac toe game.</p>
<div class="project-tech">
<span class="tech-chip">VueJS</span>
<span class="tech-chip">Tailwind</span>
</div>
</div>
</div>
<!-- Expense tracker -->
<div class="project-card" data-category="vuejs,compositionapi">
<img
src="./css/img/expense_tracker.png"
alt="Project Image"
class="project-img"
/>
<div class="project-info">
<div class="project-title">
<h3>Expense tracker</h3>
<a
style="margin-top: 4px"
href="https://github.com/VitorFerronato/expense-tracker"
target="_blank"
>
<i class="bi bi-github home__social-icon"></i>
</a>
<a
style="margin-top: 4px"
href="https://expenseflow.netlify.app/"
target="_blank"
>
<i class="bi bi-caret-right-square home__social-icon"></i>
</a>
</div>
<p class="project-description">
The Expense Tracker is a simple yet powerful web application
designed to help you manage your personal finances
effortlessly. With this application, you can easily record and
track your expenses and income, providing a clear view of your
overall financial balance.
</p>
<div class="project-tech">
<span class="tech-chip">VueJS</span>
<span class="tech-chip">Toast</span>
</div>
</div>
</div>
<!-- Weather APP -->
<div
class="project-card"
data-category="vuejs,compositionapi,axios,tailwind"
>
<img
src="./css/img/sky_alerts.png"
alt="Project Image"
class="project-img"
/>
<div class="project-info">
<div class="project-title">
<h3>Sky Alerts</h3>
<a
style="margin-top: 4px"
href="https://github.com/VitorFerronato/weather-app"
target="_blank"
>
<i class="bi bi-github home__social-icon"></i>
</a>
<a
style="margin-top: 4px"
href="https://skyalerts.netlify.app"
target="_blank"
>
<i class="bi bi-caret-right-square home__social-icon"></i>
</a>
</div>
<p class="project-description">
Sky alerts is a user-friendly web application designed to
provide detailed weather information for any city around the
globe.
</p>
<div class="project-tech">
<span class="tech-chip">VueJS</span>
<span class="tech-chip">Toast</span>
<span class="tech-chip">Axios</span>
<span class="tech-chip">Tailwind</span>
</div>
</div>
</div>
<!-- Days for christmas -->
<div class="project-card" data-category="vuejs,compositionapi">
<img
src="./css/img/days_for_christmas.png"
alt="Project Image"
class="project-img"
/>
<div class="project-info">
<div class="project-title">
<h3>Days for christmas</h3>
<a
style="margin-top: 4px"
href="https://github.com/VitorFerronato/weather-app"
target="_blank"
>
<i class="bi bi-github home__social-icon"></i>
</a>
<a
style="margin-top: 4px"
href="https://days-for-christmas.netlify.app/"
target="_blank"
>
<i class="bi bi-caret-right-square home__social-icon"></i>
</a>
</div>
<p class="project-description">a timer until Christmas Day.</p>
<div class="project-tech">
<span class="tech-chip">VueJS</span>
<span class="tech-chip">Tailwind</span>
<span class="tech-chip">Vue form</span>
</div>
</div>
</div>
<!-- IP Tracker -->
<div
class="project-card"
data-category="vuejs,tailwind,leaflet,axios,compositionapi"
>
<img
src="./css/img/ipTracker/ipTracker.png"
alt="Project Image"
class="project-img"
/>
<div class="project-info">
<div class="project-title">
<h3>IP tracker</h3>
<a
style="margin-top: 4px"
href="https://github.com/VitorFerronato/ip-tracker"
target="_blank"
>
<i class="bi bi-github home__social-icon"></i>
</a>
</div>
<p class="project-description">
A simple IP tracker that uses the Geo IP API to retrieve
location information and display it on a map.
</p>
<div class="project-tech">
<span class="tech-chip">VueJS</span>
<span class="tech-chip">Tailwind CSS</span>
<span class="tech-chip">Leaflet</span>
<span class="tech-chip">Geo IP API</span>
<span class="tech-chip">Axios</span>
</div>
</div>
</div>
<!-- Infinite Scroll -->
<div class="project-card" data-category="vuejs,axios,optionsapi">
<img
src="./css/img/infiniteScroll/infinite-scroll.png"
alt="Project Image"
class="project-img"
/>
<div class="project-info">
<div class="project-title">
<h3>Infinite Scroll</h3>
<a
style="margin-top: 4px"
href="https://github.com/VitorFerronato/infinite-scroll"
target="_blank"
>
<i class="bi bi-github home__social-icon"></i>
</a>
<a
style="margin-top: 4px"
href="https://infinite-scroll-vue.netlify.app/"
target="_blank"
>
<i class="bi bi-caret-right-square home__social-icon"></i>
</a>
</div>
<p class="project-description">
This project is an implementation of an infinite scroll list
using Vue.js, vueUse, dummyJson and Axios. The application
fetches dummy data from the API using dummyJson and displays
it in the interface using Vue.js, taking advantage of the
infinite scroll feature to load more items as the user scrolls
down.
</p>
<div class="project-tech">
<span class="tech-chip">VueJS</span>
<span class="tech-chip">VueUse</span>
<span class="tech-chip">Leaflet</span>
<span class="tech-chip">DummyJson</span>
<span class="tech-chip">Axios</span>
</div>
</div>
</div>
<!-- Roquet Q -->
<div class="project-card" data-category="nodejs,ejs,express,sqlite">
<img
src="./css/img/portifolio1/portifolio1.png"
alt="Project Image"
class="project-img"
/>
<div class="project-info">
<div class="project-title">
<h3>Roquet Q</h3>
<a
style="margin-top: 4px"
href="https://github.com/VitorFerronato/RocketQ"
target="_blank"
>
<i class="bi bi-github home__social-icon"></i>
</a>
</div>
<p class="project-description">
Rocket.Q is an interaction application through questions,
making it possible to create a room for anonymous internet
users to ask questions and the creator of the room, in
possession of a password, manage these questions and mark them
as read.
</p>
<div class="project-tech">
<span class="tech-chip">HTML/CSS</span>
<span class="tech-chip">NodeJS</span>
<span class="tech-chip">EJS</span>
<span class="tech-chip">Express</span>
<span class="tech-chip">SQLite</span>
</div>
</div>
</div>
<!-- Make your burguer -->
<div class="project-card" data-category="vuejs,optionsapi">
<img
src="./css/img/Make_your_burguer.jpg"
alt="Project Image"
class="project-img"
/>
<div class="project-info">
<div class="project-title">
<h3>Make your burguer</h3>
<a
style="margin-top: 4px"
href="https://github.com/VitorFerronato/make-your-burger"
target="_blank"
>
<i class="bi bi-github home__social-icon"></i>
</a>
</div>
<p class="project-description">
Make Your Burger is a modular application. At the frontend,
customers can fill out a form to assemble their burger .
Orders are stored in a database and accessed through an API.
These orders are displayed on a dashboard, which allows you to
view, change and delete orders.
</p>
<div class="project-tech">
<span class="tech-chip">VueJS</span>
<span class="tech-chip">JSON Server API</span>
</div>
</div>
</div>
<!-- Todo LIST -->
<div class="project-card" data-category="vuejs,bootstrap">
<img
src="./css/img/TODO_list.png"
alt="Project Image"
class="project-img"
/>
<div class="project-info">
<div class="project-title">
<h3>TODO List</h3>
<a
style="margin-top: 4px"
href="https://github.com/VitorFerronato/ToDoList"
target="_blank"
>
<i class="bi bi-github home__social-icon"></i>
</a>
</div>
<p class="project-description">
The project is a task app, where you can register new tasks,
edit and delete them. Uses the browser's own localStorage and
displays a message for each user action.
</p>
<div class="project-tech">
<span class="tech-chip">VueJS</span>
<span class="tech-chip">Bootstrap</span>
<span class="tech-chip">Toast</span>
</div>
</div>
</div>
<!-- Beauty Salon -->
<div class="project-card" data-category="vuejs,bootstrap">
<img
src="./css/img/portifolio3/portifolio.png"
alt="Project Image"
class="project-img"
/>
<div class="project-info">
<div class="project-title">
<h3>Beauty Salon</h3>
<a
style="margin-top: 4px"
href="https://github.com/VitorFerronato/OriginSix"
target="_blank"
>
<i class="bi bi-github home__social-icon"></i>
</a>
<a
style="margin-top: 4px"
href="https://vitorferronatoapps.github.io/beautysalon/"
target="_blank"
>
<i class="bi bi-caret-right-square home__social-icon"></i>
</a>
</div>
<p class="project-description">
Project carried out during RocketSeat's NLW together, presents
a customizable website for a beauty salon
</p>
<div class="project-tech">
<span class="tech-chip">HTML/CSS/Javascript</span>
<span class="tech-chip">Swiper</span>
<span class="tech-chip">Scroll Review</span>
<span class="tech-chip">ION icons</span>
</div>
</div>
</div>
<!-- TODO List 2 -->
<div class="project-card" data-category="vuejs,optionsapi">
<img
src="./css/img/TODO_list2.png"
alt="Project Image"
class="project-img"
/>
<div class="project-info">
<div class="project-title">
<h3>TODO List 2</h3>
<a
style="margin-top: 4px"
href="https://github.com/VitorFerronato/todo-list"
target="_blank"
>
<i class="bi bi-github home__social-icon"></i>
</a>
</div>
<p class="project-description">
The project is a simple task app, you can add mark as done and
delete tasks, also, the progress bar is set dynamically
depending on how many tasks are done. Tasks are stored in the
browser's localStorage.
</p>
<div class="project-tech">
<span class="tech-chip">VueJS</span>
</div>
</div>
</div>
</div>