-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
926 lines (840 loc) · 33.7 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
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
<!DOCTYPE html>
<html lang="pt-br">
<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" /> -->
<!-- JavaScript -->
<script src="./js/main.js" defer></script>
<!-- Icones bootstrap -->
<!-- <link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/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 -->
<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="#home" class="nav__link">
<i class="bi bi-house nav__icon"></i> Home
</a>
</li>
<li class="nav__item">
<a href="#about" class="nav__link">
<i class="bi bi-person nav__icon"></i> About
</a>
</li>
<li class="nav__item">
<a href="#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="#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 -->
<main style="display: none" class="main">
<!-- HOME -->
<section class="home section active-link" id="home">
<div class="home__container container grid">
<div class="home__content grid">
<div class="home__social">
<a
href="https://www.linkedin.com/in/vitor-ferronato-687b59228/"
target="_blank"
class="home__social-icon"
>
<i class="bi bi-linkedin"></i>
</a>
<a
href="https://github.com/VitorFerronato"
target="_blank"
class="home__social-icon"
>
<i class="bi bi-github"></i>
</a>
</div>
<div class="home__img">
<img
src="css/img/perfilHome.jpg"
alt="Foto perfil Vitor ferronato"
/>
</div>
<div class="home__data">
<h1 class="home__title">Hello! I'm Vitor</h1>
<h3 class="home__subtitle">Front-end developer</h3>
<p class="home__description">
Front developer with more than 4 years of experience, expert in
vuejs environment and his tools.
</p>
</div>
</div>
<div class="home__scroll">
<a href="portifolio.html" class="home__scroll-button button--flex">
<i class="bi bi-mouse home__scroll-mouse"></i>
<span class="home__scroll-name">All projects here!!</span>
<i class="bi bi-caret-down-square home__scroll-arrow"></i>
</a>
</div>
</div>
</section>
<!-- ABOUT -->
<section class="about section" id="about">
<h2 class="section__title">About me</h2>
<span class="section__subtitle">My introduction</span>
<div class="container grid">
<div>
<p class="about__description">
Enthusiastic since I was little, I have always been passionate
about technology and very curious about how things work.
</p>
<p class="about__description">
I started my journey with Python 4 years ago, but it was with
front end that I found myself, since then I have been studying new
tools, libraries, participating in communities, always trying to
improve my skills.
</p>
<p class="about__description">
I have several hobbies, but mainly sports, I am a jiu jitsu
athlete and I also practice boxing.I'm passionate about music,
rock baby and also a culinary enthusiast
</p>
</div>
<div class="about__buttons">
<a
download
href="/cv-vitor-ferronato-en.docx"
class="button button--flex"
>
Download C.V <i class="bi bi-download button__icon"></i>
</a>
</div>
</div>
</section>
<!-- QUALIFICATIONS-->
<section class="qualification section">
<h2 class="section__title">Qualifications</h2>
<span class="section__subtitle">My personal journey</span>
<div class="qualification__container container">
<div class="qualification__tabs">
<div
class="qualification__button button--flex qualification__active"
data-target="#work"
>
<i class="bi bi-person"></i>
Work
</div>
<div
class="qualification__button button--flex"
data-target="#education"
>
<i class="bi bi-person"></i>
Education
</div>
</div>
<div class="qualification__sections">
<!-- WORK -->
<div
class="qualification__content qualification__active"
data-content
id="work"
>
<div class="qualification__data">
<div>
<h3 class="qualification__title">Mid Front-end Developer</h3>
<span class="qualification__subtitle">Neogrid</span>
<div class="qualification_calendar">
<i class="bi bi-calendar"></i>
jan/2024 - Actual
</div>
</div>
<div>
<span class="qualification__rounder"></span>
<span class="qualification__line"></span>
</div>
</div>
<div class="qualification__data">
<div></div>
<div>
<span class="qualification__rounder"></span>
<span class="qualification__line"></span>
</div>
<div>
<h3 class="qualification__title">Jr. Front-end Developer</h3>
<span class="qualification__subtitle">Predify</span>
<div class="qualification_calendar">
<i class="bi bi-calendar"></i>
Jun/2022 - Jan/2024
</div>
</div>
</div>
</div>
<!-- EDUCATION-->
<div class="qualification__content" data-content id="education">
<div class="qualification__data">
<div>
<h3 class="qualification__title">
Systems analysis and development
</h3>
<span class="qualification__subtitle">Cruzeiro do Sul</span>
<div class="qualification_calendar">
<i class="bi bi-calendar"></i>
jan/2024 - Actual
</div>
</div>
<div>
<span class="qualification__rounder"></span>
<span class="qualification__line"></span>
</div>
</div>
<div class="qualification__data">
<div></div>
<div>
<span class="qualification__rounder"></span>
<span class="qualification__line"></span>
</div>
<div>
<h3 class="qualification__title">
Coaching and self development
</h3>
<span class="qualification__subtitle">Uninter</span>
<div class="qualification_calendar">
<i class="bi bi-calendar"></i>
jan/2018 - jan/2020
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Skills -->
<section class="skills section" id="skills">
<h2 class="section__title">Skills</h2>
<span class="section__subtitle">My technologies</span>
<div class="skills__container container grid">
<div>
<!-- Skill 1-->
<div class="skills__content skills__open">
<div class="skills__header">
<i class="bi bi-braces skills__icon"></i>
<div>
<h1 class="skills__title">Frontend technologies</h1>
<!-- <span class="skills__subtitle">More than 1 year</span> -->
</div>
<i class="bi bi-caret-down skills__arrow"></i>
</div>
<div class="skills__list grid">
<div class="skills__flex-container">
<div class="skills__flex">
<div class="skills__data">
<div class="skills__titles">
<div class="skills__box">
<img
src="https://www.svgrepo.com/show/452130/vue.svg"
alt="VueJ logo"
class="skills__logo"
/>
<h3 class="skills__name">Vue js</h3>
</div>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<div class="skills__box">
<img
src="https://www.svgrepo.com/show/373940/nuxt.svg"
alt="Nuxt logo"
class="skills__logo"
/>
<h3 class="skills__name">Nuxt</h3>
</div>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<div class="skills__box">
<img
src="https://www.svgrepo.com/show/452156/angular.svg"
alt="angular logo"
class="skills__logo"
/>
<h3 class="skills__name">Angular</h3>
</div>
</div>
</div>
</div>
<div class="skills__flex">
<div class="skills__data">
<div class="skills__titles">
<div class="skills__box">
<img
src="https://www.svgrepo.com/show/374118/tailwind.svg"
style="margin-top: 10px"
alt="tailwind logo"
class="skills__logo"
/>
<h3 class="skills__name">Tailwind</h3>
</div>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<div class="skills__box">
<img
src="https://www.svgrepo.com/show/374146/typescript-official.svg"
style="margin-top: 10px"
alt="Typescript logo"
class="skills__logo"
/>
<h3 class="skills__name">Typescript</h3>
</div>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<div class="skills__box">
<img
src="https://www.svgrepo.com/show/349502/sass.svg"
alt="Sass logo"
class="skills__logo"
/>
<h3 class="skills__name">SASS</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Skill 2 -->
<div class="skills__content skills__close">
<div class="skills__header">
<i class="bi bi-tools skills__icon"></i>
<div>
<h1 class="skills__title">Backend technologies</h1>
<!-- <span class="skills__subtitle">More than 1 year</span> -->
</div>
<i class="bi bi-caret-down skills__arrow"></i>
</div>
<div class="skills__list grid">
<div class="skills__flex-container">
<div class="skills__flex">
<div class="skills__data">
<div class="skills__titles">
<div class="skills__box">
<img
src="https://www.svgrepo.com/show/354119/nodejs-icon.svg"
alt="Sass logo"
class="skills__logo"
/>
<h3 class="skills__name">NodeJs</h3>
</div>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<div class="skills__box">
<img
src="https://www.svgrepo.com/show/330398/express.svg"
alt="Express logo"
class="skills__logo"
/>
<h3 class="skills__name">Express</h3>
</div>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<div class="skills__box">
<img
src="https://www.svgrepo.com/show/452091/python.svg"
alt="Logo HTML"
class="skills__logo"
/>
<h3 class="skills__name">Python</h3>
</div>
</div>
</div>
</div>
<div class="skills__flex">
<div class="skills__data">
<div class="skills__titles">
<div class="skills__box">
<img
src="https://www.svgrepo.com/show/373595/firebase.svg"
alt="firebase logo"
class="skills__logo"
/>
<h3 class="skills__name">Firebase</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Skill 3 -->
<div class="skills__content skills__close">
<div class="skills__header">
<i class="bi bi-gear skills__icon"></i>
<div>
<h1 class="skills__title">Database technologies</h1>
<!-- <span class="skills__subtitle">More than 1 year</span> -->
</div>
<i class="bi bi-caret-down skills__arrow"></i>
</div>
<div class="skills__list grid">
<div class="skills__flex-container">
<div class="skills__flex">
<div class="skills__data">
<div class="skills__titles">
<div class="skills__box">
<img
src="https://www.svgrepo.com/show/373845/mongo.svg"
alt="mongodb logo"
class="skills__logo"
/>
<h3 class="skills__name">MongoDB</h3>
</div>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<div class="skills__box">
<img
src="https://www.svgrepo.com/show/354210/prisma.svg"
alt="prisma logo"
class="skills__logo"
/>
<h3 class="skills__name">Prisma</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Skill 4 -->
<div class="skills__content skills__close">
<div class="skills__header">
<i class="bi bi-brush skills__icon"></i>
<div>
<h1 class="skills__title">Design and others</h1>
<!-- <span class="skills__subtitle">More than 1 year</span> -->
</div>
<i class="bi bi-caret-down skills__arrow"></i>
</div>
<div class="skills__list grid">
<div class="skills__flex-container">
<div class="skills__flex">
<div class="skills__data">
<div class="skills__titles">
<div class="skills__box">
<img
src="https://www.svgrepo.com/show/452202/figma.svg"
alt="Logo HTML"
class="skills__logo"
/>
<h3 class="skills__name">Figma</h3>
</div>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<div class="skills__box">
<img
src="https://www.svgrepo.com/show/512317/github-142.svg"
alt="Sass logo"
class="skills__logo"
/>
<h3 class="skills__name">Git and Github</h3>
</div>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<div class="skills__box">
<img
src="https://www.svgrepo.com/show/373968/photoshop.svg"
alt="JavaScript logo"
class="skills__logo"
/>
<h3 class="skills__name">Photoshop</h3>
</div>
</div>
</div>
</div>
<div class="skills__flex">
<div class="skills__data">
<div class="skills__titles">
<div class="skills__box">
<img
src="https://www.svgrepo.com/show/373590/excel2.svg"
alt="JavaScript logo"
class="skills__logo"
/>
<h3 class="skills__name">Excel</h3>
</div>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<div class="skills__box">
<img
src="https://www.svgrepo.com/show/353464/azure.svg"
alt="azure logo"
class="skills__logo"
/>
<h3 class="skills__name">Azure</h3>
</div>
</div>
</div>
<div class="skills__data">
<div class="skills__titles">
<div class="skills__box">
<img
src="https://www.svgrepo.com/show/452241/jira.svg"
alt="jira logo"
class="skills__logo"
/>
<h3 class="skills__name">Jira</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Porfolio -->
<section class="portfolio section" id="portfolio">
<h2 class="section__title">Portfolio</h2>
<span class="section__subtitle">Recent works</span>
<div class="portfolio__container swiper">
<div class="swiper-wrapper">
<!-- Sky alerts -->
<div class="portfolio__content grid swiper-slide">
<img
src="css/img/sky_alerts.png"
alt=""
class="portfolio__img Beautysalon"
/>
<div class="portfolio__data">
<h3 class="portfolio__title">Sky alerts</h3>
<p class="portfolio__description">
Weather Watcher is a user-friendly web application designed to
provide detailed weather information for any city around the
globe.
</p>
<!--Demo-->
<a
href="https://skyalerts.netlify.app"
target="_blank"
class="button button--flex button--small portoflio__button"
>
Demo
<i class="bi bi-box-arrow-right button__icon"></i>
</a>
<!-- Github-->
<a
href="https://github.com/VitorFerronato/weather-app"
target="_blank"
class="button button--flex button--small portoflio__button button-hub"
>
GitHub
<i class="bi bi-github button__icon"></i>
</a>
</div>
</div>
<!-- Easy Bills -->
<div class="portfolio__content grid swiper-slide">
<img
src="css/img/Invoices_new.jpg"
alt=""
class="portfolio__img cross"
/>
<div class="portfolio__data">
<h3 class="portfolio__title">Easy Bills</h3>
<p class="portfolio__description">
Easy Bill is a responsive web application developed with
Vue.js 3, Firebase and Vue animations, designed to simplify
your billing and tracking needs expenses. With Easy Bill you
can easily manage your bills and expenses in a reactive and
easy-to-use environment.
</p>
<!--Deploy-->
<a
href="https://easybillsapp.netlify.app/"
target="_blank"
class="button button--flex button--small portoflio__button"
>
Deploy
<i class="bi bi-box-arrow-right button__icon"></i>
</a>
<!-- Github-->
<a
href="https://github.com/VitorFerronato/easyBillsApp"
target="_blank"
class="button button--flex button--small portoflio__button button-hub"
>
GitHub
<i class="bi bi-github button__icon"></i>
</a>
</div>
</div>
<!-- Ip tracker -->
<div class="portfolio__content grid swiper-slide">
<img
src="css/img/ipTracker/ipTracker.png"
alt=""
class="portfolio__img cross"
/>
<div class="portfolio__data">
<h3 class="portfolio__title">Ip Address Tracker</h3>
<p class="portfolio__description">
Is a simple IP tracker made with vueJS 3 (composition API),
tailwind and leaflet, that uses the Geo IP API to retrieve
location information and display it on a map.
</p>
<!-- Github-->
<a
href="https://github.com/VitorFerronato/ip-tracker"
target="_blank"
class="button button--flex button--small portoflio__button button-hub"
>
GitHub
<i class="bi bi-github button__icon"></i>
</a>
</div>
</div>
<!-- Infinite Scroll -->
<div class="portfolio__content grid swiper-slide">
<img
src="css/img/infiniteScroll/infinite-scroll.png"
alt=""
class="portfolio__img cross"
/>
<div class="portfolio__data">
<h3 class="portfolio__title">Infinite Scroll</h3>
<p class="portfolio__description">
This project is an implementation of a scrolling list infinite
using Vue.js, vueUse, dummyJson and Axios. The application
fetches fictitious data from API using dummyJson and displays
them in the interface using Vue.js, taking advantage of the
infinite scroll to load more items as the user scrolls down.
</p>
<!--Deploy-->
<a
href="https://infinite-scroll-vue.netlify.app/"
target="_blank"
class="button button--flex button--small portoflio__button"
>
Deploy
<i class="bi bi-box-arrow-right button__icon"></i>
</a>
<!-- Github-->
<a
href="https://github.com/VitorFerronato/infinite-scroll"
target="_blank"
class="button button--flex button--small portoflio__button button-hub"
>
GitHub
<i class="bi bi-github button__icon"></i>
</a>
</div>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
<div
style="display: flex; justify-content: flex-end; margin-right: 4rem"
>
<a href="portifolio.html" class="home__scroll-button button--flex">
<i class="bi bi-mouse home__scroll-mouse"></i>
<span class="home__scroll-name">All projects here!!</span>
<i class="bi bi-caret-down-square home__scroll-arrow"></i>
</a>
</div>
</section>
<!-- Contact Me-->
<!-- <section class="contact section" id="contact">
<h2 class="section__title">Contact</h2>
<span class="section__subtitle">let's work together?</span>
<div class="contact__container container grid">
<div>
<div class="contact__information">
<i class="bi bi-telephone contact__icon"></i>
<div>
<h3 class="contact__title">Phone</h3>
<span class="contact__subtitle">+55 49 9 9817-0538</span>
</div>
</div>
<div class="contact__information">
<i class="bi bi-envelope contact__icon"></i>
<div>
<h3 class="contact__title">Email</h3>
<span class="contact__subtitle">[email protected]</span>
</div>
</div>
<div class="contact__information">
<i class="bi bi-geo-alt contact__icon"></i>
<div>
<h3 class="contact__title">Location</h3>
<span class="contact__subtitle">Brasil | Joaçaba-Sc </span>
</div>
</div>
</div>
<form name="contact" method="POST" data-netlify="true" class="contact__form grid">
<input type="hidden" name="form-name" value="contact">
<div class="contact__inputs grid">
<div class="contact__content">
<label for="name" class="contact__label">Name</label>
<input name="name" type="text" id="name" class="contact__input" required>
</div>
<div class="contact__content">
<label for="email" class="contact__label">Email</label>
<input name="email" type="email" id="email" class="contact__input" required>
</div>
</div>
<div class="contact__content">
<label for="message" class="contact__label">Message</label>
<textarea name="message" id="message" cols="30" rows="7" class="contact__input"
required></textarea>
</div>
<div>
<input type="submit" value="Enviar Mensagem" class="button button--flex">
</div>
<div id="success-message" style="display: none;">
Message sent successfully!
</div>
</form>
</div>
</section> -->
<!-- Footer -->
<footer class="footer">
<div class="footer__bg">
<div class="footer__container container grid">
<div>
<h1 class="footer__title">Vitor</h1>
<span class="footer__subtitle">Frontend Developer</span>
</div>
<ul class="footer__links">
<li>
<a href="#about" class="footer__link">About me</a>
</li>
<li>
<a href="#portfolio" class="footer__link">Portfolio</a>
</li>
<!-- <li>
<a href="#contact" class="footer__link">Contact</a>
</li> -->
</ul>
<div class="footer__socials">
<!-- <a href="https://www.facebook.com/vitoreduardo.ferronato/" target="_blank"
class="footer__social">
<i class="bi bi-facebook"></i>
</a> -->
<a
href="https://www.instagram.com/vitorferronato/"
target="_blank"
class="footer__social"
>
<i class="bi bi-instagram"></i>
</a>
<a
href="https://api.whatsapp.com/send?phone=5549998170538&text=Ol%C3%A1%2C%20achei%20o%20seu%20contato%20pelo%20portif%C3%B3lio%2C%20tudo%20bem%3F"
target="_blank"
class="footer__social"
>
<i class="bi bi-whatsapp"></i>
</a>
</div>
</div>
<p class="footer__copy">© VitorFerronato. All right reserved</p>
</div>
</footer>
<!-- Scroll up -->
<a href="#" class="scrollup" id="scroll-up">
<i class="bi bi-arrow-up scrollup__icon"></i>
</a>
</main>
<!-- Scroll review -->
<!-- <script src="https://unpkg.com/scrollreveal"></script> -->
<!-- Swipper slide -->
<!-- <script src="./js/swiper-bundle.min.js"></script> -->
</body>
</html>