-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (105 loc) · 5.27 KB
/
Copy pathindex.html
File metadata and controls
108 lines (105 loc) · 5.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>André Pereira | Backend Developer | JavaScript | Python</title>
<link rel="stylesheet" href="./style.css"/>
<script src="https://kit.fontawesome.com/57558134dd.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<nav class="navbar">
<div class="nav-container">
<a href="https://github.com/andre-dev-2021" class="nav-logo"><i class="fa-brands fa-github"></i> @andre-dev-2021</a>
<ul class="nav-menu">
<li><a href="#home" class="nav-link">Home</a></li>
<li><a href="#about" class="nav-link">Sobre mim</a></li>
<li><a href="#projects" class="nav-link">Projetos</a></li>
<li><a href="#contact" class="nav-link">Contato</a></li>
</ul>
<div class="hamburger-menu">
<span class="hamburger-line"></span>
<span class="hamburger-line"></span>
<span class="hamburger-line"></span>
</div>
</div>
</nav>
</header>
<main>
<section class="hero">
<div class="hero-content">
<h1>Olá, eu sou <span class="highlight">André</span>.</h1>
<div class="typing-container">
<p class="typing-text">this.name = "André Pereira";</p>
<span class="cursor">|</span>
</div>
</div>
</section>
<!-- BIO SECTION -->
<section id="about" class="section">
<div class="container">
<h2 class="section-title">Sobre mim</h2>
<div class="bio-content">
<p class="bio-text">
Estudante de Sistemas de Informação, músico nas horas vagas, busco a cada dia aprender coisas novas e
aplicar meus conhecimentos.
Com familiaridade com JavaScript e Python , busco construir soluções eficientes e seguir as boas práticas.
</p>
<p class="bio-text">
Busco uma oportunidade para aplicar meus conhecimentos em ambientes reais e conhecer os desafios de construir soluções
que sejam duráveis e escaláveis.
</p>
</div>
</div>
</section>
<!-- PROJECTS SECTION -->
<section id="projects" class="section">
<div class="container">
<h2 class="section-title">Conheça meus projetos</h2>
<div class="projects-grid">
<div class="project-card">
<h3>Desafio Backend Itaú Unibanco</h3>
<p>Uma REST API para registro e estatística de transações bancárias. Desafio de SpringBoot adaptado para NestJS.</p>
<div class="project-tags">
<span class="tag">REST API</span>
<span class="tag">Nest.js</span>
<span class="tag">Desafio</span>
</div>
<div class="card-link">
<p><a href="https://github.com/andre-dev-2021/desafio-itau-backend">Acessar o repositório.</a></p>
</div>
</div>
<div class="project-card">
<h3>Chatbot Telegram</h3>
<p>Um chatbot para previsão de tempo utilizando APIs do Telegram e OpenWeather.</p>
<div class="project-tags">
<span class="tag">Python</span>
<span class="tag">Chatbot</span>
<span class="tag">Telegram</span>
</div>
<div class="card-link">
<p><a href="https://github.com/andre-dev-2021/projeto-bot-python">Acessar o repositório.</a></p>
</div>
</div>
</div>
</div>
</section>
<!-- CONTACT SECTION -->
<section id="contact" class="section">
<div class="container">
<h2 class="section-title">Fale comigo</h2>
<div class="contact-content">
<p>Fique a vontade para me contatar, estou disponível para oportunidades e sugestões de melhoria!</p>
<div class="contact-links">
<a href="mailto:andrepereirasa100@gmail.com" class="contact-link"><i class="fa-solid fa-envelope"></i> Email</a>
<a href="https://github.com/andre-dev-2021" class="contact-link"><i class="fa-brands fa-github"></i> GitHub</a>
<a href="https://www.linkedin.com/in/andrepereirasa/" class="contact-link"><i class="fa-brands fa-linkedin"> </i>LinkedIn</a>
</div>
</div>
</div>
</section>
</main>
<script src="./script.js"></script>
</body>
</html>