-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
193 lines (184 loc) · 10.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
<!DOCTYPE html>
<head>
<meta charset="utf-8"/>
<meta name="author" content= "Joao Caetano"/>
<meta name="description" content="This is my personal website, originally made as a Udacity's Front End Nanodegree project."/>
<meta pagename="home" content="Home"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>João Caetano | Product Manager</title>
<link rel="icon" type="image/ico" href="img/icons/caetano-c-white.ico"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100;1,300;1,500;1,700&display=swap"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap"/>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<!-- Main wrapper -->
<div class="main-wrapper">
<!-- Header section -->
<header class="container-header">
<div class="container-header-inner">
<div class="logo-caetano">
<a href="index.html" title="João Caetano | Product Manager">
<img src="img/logos/caetano-c-white.png" alt="logo">
</a>
</div>
<nav class="nav-menu">
<ul class="menu">
<li class="menu-item">
<!-- internal link -->
<a class="menu-item" href="#about">About</a>
</li>
<li class="menu-item">
<a class="menu-item" href="pages/book-reviews.html">Book Reviews</a>
</li>
</ul>
</nav>
</div>
</header>
<!-- Main section -->
<main class="container-main about-wrapper">
<!-- About -->
<div class="about-content-holder">
<div class="about-content">
<!-- tag to redirect from the internal link -->
<div id="about"></div>
<!-- put the about section here below -->
<section>
<h1 id="salutation">Greetings!</h1>
</section>
<section>
<h2 id="presentation">I'm Caetano,</h2>
</section>
<section id="about-text">
<p>an <b>Associate Product Manager</b> at <a href="https://www.vtex.com" target="_blank" class="link-in-text">VTEX</a>. Currently, I’m part of the Checkout Squad, where we develop the best-in-class checkout experience for our customers.</p>
<p>I graduted as an Industrial Engineer from both Federal University of Rio de Janeiro, in Brazil, and École des Mines de Saint-Étienne, France. Previously, I’ve worked at <b>Accenture, Groupe Casino, and Eleva Educação</b>, doing a wide range of different jobs.</p>
<p>Nevertheless, it was in VTEX that I’ve became passioned about technology and the business challenges it can solve.</p>
</section>
</div>
<div class="photo-container">
<img src="img/full-size.png" alt="João Caetano - Photo" id="author-photo">
</div>
</div>
<!-- Recent reviews list -->
<div class="container-reviews">
<section class="recent-reviews-title">
<h3>Recent Reviews</h3>
</section>
<!-- Book reviews list component -->
<nav class="nav-recent-reviews">
<ul class="book-reviews-list" id="list-about-page">
<li class="book-reviews-item">
<a href="pages/book-reviews/innovators-dilemma-christensen.html">
<div class="book-card-inner">
<div class="book-cover">
<img src="img/book-covers/book-1-innovators-dilemma.png" alt="The Innovator's Dilemma book cover">
</div>
<div class="book-infos">
<h4 id="book-title">The Innovator's Dilemma</h4>
<p id="book-authorship" title="authorship">Author: Clayton Christensen</p>
</div>
</div>
</a>
</li>
<li class="book-reviews-item">
<a href="pages/book-reviews/inspired-cagan.html">
<div class="book-card-inner">
<div class="book-cover">
<img src="img/book-covers/book-2-inspired.png" alt="Inspired book cover">
</div>
<div class="book-infos">
<h4 id="book-title">Inspired</h4>
<p id="book-authorship" title="authorship">Author: Marty Cagan</p>
</div>
</div>
</a>
</li>
<li class="book-reviews-item">
<a href="pages/book-reviews/sprint.html">
<div class="book-card-inner">
<div class="book-cover">
<img src="img/book-covers/book-6-sprint.png" alt="Sprint book cover">
</div>
<div class="book-infos">
<h4 id="book-title">Sprint</h4>
<p id="book-authorship" title="authorship">Author: Jake Knapp, John Zeratsky</p>
</div>
</div>
</a>
</li>
<li class="book-reviews-item">
<a href="pages/book-reviews/escaping-the-build-trap.html">
<div class="book-card-inner">
<div class="book-cover">
<img src="img/book-covers/book-5-escaping-the-build-trap.png" alt="Escaping the Build Trap book cover">
</div>
<div class="book-infos">
<h4 id="book-title">Escaping the Build Trap</h4>
<p id="book-authorship" title="authorship">Author: Melissa Perri</p>
</div>
</div>
</a>
</li>
<li class="book-reviews-item">
<a href="pages/book-reviews/the-product-book.html">
<div class="book-card-inner">
<div class="book-cover">
<img src="img/book-covers/book-4-the-product-book.png" alt="The Product Book book cover">
</div>
<div class="book-infos">
<h4 id="book-title">The Product Book</h4>
<p id="book-authorship" title="authorship">Author: Prodcut School</p>
</div>
</div>
</a>
</li>
<li class="book-reviews-item" id="last-item">
<a href="pages/book-reviews/lean-startup-ries.html">
<div class="book-card-inner">
<div class="book-cover">
<img src="img/book-covers/book-3-lean-startup.png" alt="The Lean Startup book cover">
</div>
<div class="book-infos">
<h4 id="book-title">The Lean Startup</h4>
<p id="book-authorship" title="authorship">Author: Eric Ries</p>
</div>
</div>
</a>
</li>
</ul>
</nav>
</div>
</main>
<!-- Footer -->
<footer class="footer-content-holder">
<div class="inner-footer-container">
<form title="Newletter Subscription" class="newsletter-form">
<section class="newsletter-title">
<h3>Newsletter</h3>
</section>
<div class="input-container">
<input class="input-entry-box" type="text" title="Name input" placeholder="Name:" on>
<input class="input-entry-box" type="email" title="Email input" placeholder="Email:">
</div>
</form>
<div class="btn-holder">
<button class="btn btn-subscribe" value="subscribe" type="button" onclick="alert('Subscription sent!')">
Subscribe
</button>
</div>
<div class="external-profiles">
<div class="logo-footer">
<a href="https://www.github.com/caetano1" target="_blank">
<img src="img/logos/GitHub-Mark-64px.png" class="github-logo" alt="Github">
</a>
</div>
<div class="logo-footer">
<a href="https://www.linkedin.com/in/joaoluiscaetano" target="_blank">
<img src="img/logos/linkedin-round.png" class="linkedin-logo" alt="Linkedin">
</a>
</div>
</div>
</div>
</footer>
</div>
</body>