-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
312 lines (306 loc) · 11.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Joel Del Cueto's Portfolio</title>
<!--Use normalize.css to set the same defaults in all browsers-->
<link
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
rel="stylesheet"
type="text/css"
/>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="container">
<header>
<!--Signature "logotype"-->
<div id="logo">
<a href="#banner">
<img
src="images/logo.svg"
alt="Image of my signature."
class="logo"
/>
</a>
</div>
<!--Navigation-->
<nav>
<ul>
<li><a href="#about" class="button">About</a></li>
<li><a href="#work" class="button">Work</a></li>
<li><a href="#contact" class="button">Contact</a></li>
</ul>
</nav>
<!--Header banner-->
<section id="banner">
<h1>
Hello, I'm <a href="#introduction">Joel</a>.
<br />
I'm a <a href="#about">software developer</a>
<br />
living in <a href="#contact">Lakeland, Fl</a>.
</h1>
<hr />
</section>
</header>
<main>
<!--Intro and greeting-->
<section id="introduction">
<div class="group">
<div class="item">
<img src="images/me.jpg" alt="My picture." class="image-circle" />
</div>
<div class="item-triple">
<h2>Nice to meet you!</h2>
<p>
I'm Joel Del Cueto. I'm a Full-stack developer proficient in
HTML, CSS, Javascript, React, Node, and SQL. I studied
philosophy and theology and have a mind for logic and analysis.
I have 9 years of experience working with people to build strong
communities that strive to have a positive impact on society.
</p>
</div>
</div>
<hr />
</section>
<!--Projects I've worked on-->
<section id="work">
<h2>My Work</h2>
<div class="group">
<article class="item shadow-box">
<img
src="images/mellifluous.jpg"
alt="Mellifluous site screenshot."
/>
<h3>Mellifluous</h3>
<hr />
<p>
Help users find new songs and artists by getting recommendations
based on a song or artist they like and several other
preferences using Spotify’s API.
</p>
<p>
I wanted to do something fun and music-related. After looking
for an API to base this project on, I found Spotify's
recommendation API to be an interesting dataset for this
project.
</p>
<p>Built with: jQuery, Javascript, HTML and CSS.</p>
<a
href="https://wayfaringjou.github.io/mellifluous/"
class="button"
>Live Site</a
>
<a
href="https://github.com/wayfaringjou/mellifluous"
class="button"
>Project Repo</a
>
</article>
<article class="item shadow-box">
<img
src="images/statementflow.png"
alt="Statementflow site screenshot."
/>
<h3>Statementflow</h3>
<hr />
<p>
A tool to help accountants in the preparation of financial
statements. Use worksheet templates to gather client's financial
data and export a Statement file in docx format.
</p>
<p>
The initial idea for this project was: "a tool that would be
useful for the office". My brother's an accountant and he gave
me some ideas I could work on. The finished initial version
ended up as a proof-of-concept that I would like to develop
further.
</p>
<p>
Built with: React, Express, Nodejs, PostgreSQL, Javascript,
HTML, CSS.
</p>
<a href="https://statementflow.vercel.app/" class="button"
>Live Site</a
>
<a
href="https://github.com/wayfaringjou/statementflow"
class="button"
>Project Repo: Client</a
>
<a
href="https://github.com/wayfaringjou/statementflow-api"
class="button"
>Project Repo: API</a
>
</article>
<article class="item shadow-box">
<img src="images/harvest.jpg" alt="Harvest site screenshot." />
<h3>Harvest</h3>
<hr />
<p>
Keep track of your garden growth. Log plant data and keep notes
on garden care and details.
</p>
<p>
I wanted to implement an external API for this project and also
to do something related to nature. We have a garden at home, and
I thought that a tool to keep track of it would be interesting.
</p>
<p>
Built with: React, Express, Nodejs, PostgreSQL, Javascript,
HTML, CSS.
</p>
<a href="https://harvest-psi.vercel.app/" class="button"
>Live Site</a
>
<a
href="https://github.com/wayfaringjou/harvest-client"
class="button"
>Project Repo: Client</a
>
<a
href="https://github.com/wayfaringjou/harvest-api"
class="button"
>Project Repo: API</a
>
</article>
</div>
</section>
<!--Some info about myself and interests-->
<section id="about">
<h2>About me</h2>
<p class="first-blk">
Since 2011 I've worked as a priest in several communities in Madrid
and Puerto Rico. This job has given me the chance to know and work
closely with many people towards the betterment of personal and
social struggles.
</p>
<p class="first-blk">
These experiences have impressed upon me the importance of pursuing
what you love and being truthful to yourself. I like to work on
projects that foster community development, promote education and
opportunities for people, or provide beneficial services.
</p>
<p class="third-blk">
I've worked hard to develop my skills in Thinkful's Software Engineering Program where I studied best practices and modern practical web development standards using HTML, CSS, Javascript, jQuery, React, NodeJS, and PostgreSQL and fundamental knowledge of data structures and algorithms.
</p>
<p class="third-blk">
If you're looking to hire a new hard-working developer feel free to
<a href="#contact">contact me</a>! I'm sure I can employ my
experiences and skills to build your
digital product and move your project forward.
</p>
<aside class="interests second-blk">
<div class="interests-img">
<img src="images/guitarw.jpg" alt="My guitar." />
<h4>
<span>
I also find <strong>joy</strong> <br />
<em>hacking</em> at <br />
my guitar.
</span>
</h4>
</div>
<div class="interests-img">
<img
src="images/juandiegopondw.jpg"
alt="Juan Diego pond in 'El Yunque'."
/>
<h4>
<span>
I'm in <br />
my <em>element</em> <br />
when I'm <em>hiking</em>.
</span>
</h4>
</div>
</aside>
<aside class="interests third-blk">
<div class="interests-img">
<img
src="images/pinegrovebeach.gif"
alt="Pine grove beach in 'Isla Verde'."
/>
<h4>
<span>
Some don't <br />
like sand. <br />
<em>I embrace it</em>.
</span>
</h4>
</div>
<div class="interests-img">
<img src="images/bike.jpg" alt="My MTB." />
<h4>
<span>
I go cycling <br />
when I want a <br />
change of <em>pace</em>.
</span>
</h4>
</div>
</aside>
</section>
<!--Contact Info-->
<section id="contact">
<h2>Contact me</h2>
<div class="group">
<section class="item item-form">
<h3>Reach out! Feel free to contact me:</h3>
<form action="https://formspree.io/f/myybepaq" method="POST">
<fieldset class="shadow-box">
<legend class="button nohover">Send me a message</legend>
<label for="fullName" class="caption">Name:</label>
<input name="name" id="fullName" type="text" />
<label for="emailAddress" class="caption">Your Email:</label>
<input name="_replyto" id="emailAddress" type="email" />
<label for="message" class="caption">Message:</label>
<textarea name="message" id="message"></textarea>
<button type="submit" class="button">Send</button>
</fieldset>
</form>
</section>
<section class="item item-social">
<h3>You can also contact or follow me in:</h3>
<ul>
<li>
<a
href="https://www.linkedin.com/in/joel-del-cueto"
target="_blank"
><img src="images/LI-Logo.png" alt="LinkedIn Logo icon."
/></a>
</li>
<li>
<a href="https://github.com/wayfaringjou" target="_blank"
><img src="images/GitHub_Logo.png" alt="GitHub Logo icon."
/></a>
</li>
<li>
<a href="mailto:[email protected]" target="_blank"
><img src="images/email.png" alt="Email envelope icon."
/></a>
</li>
</ul>
</section>
<section class="item item-map">
<h3>I'm located in Lakeland:</h3>
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d112664.092014643!2d-82.01739927703309!3d28.062569262904468!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88dd38b2df0f0007%3A0x29d1320fb8a2d508!2sLakeland%2C%20FL%2C%20USA!5e0!3m2!1sen!2spr!4v1602061727502!5m2!1sen!2spr"
allowfullscreen=""
aria-hidden="false"
tabindex="0"
>
</iframe>
</section>
</div>
</section>
</main>
</div>
<footer>
<h3>© Joel Del Cueto</h3>
</footer>
</body>
</html>