generated from 11ty/eleventy-base-blog
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.liquid
67 lines (52 loc) · 2.47 KB
/
index.liquid
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
---
layout: layouts/base.liquid
title: Homepage
customFeaturedImage: homepage-image.jpg
---
{% assign majorWork = work[1].work %}
<div class="homepage minHeight-100vh color-mono-black">
<div class="opening-text pt-2 md--mb-8">
<h1 class="opening-text__header text-h1 text-center">
I make the web <br>
<span class="opening-text--functional">functional</span> <br>
<span class="opening-text--pretty">and pretty</span>
</h1>
{% include coordinateArt.liquid %}
</div>
<br class="hidden-xl-down">
<div>
<img width="150" height="150" class="logo mx-auto sm--mr-12 mb-4 border-radius-full" src="/assets/images/global/profile-2.jpg" alt="Maxwell's profile picture" />
<p>
Hello there! I'm Max Antonucci, a senior full-stack engineer that codes with HTML5, CSS3, JavaScript, React, Ember, Ruby, Ruby on Rails, Python, and more. My specialties include web accessibility and design systems, and I love having the opportunity to contribute to the civic tech sphere. I am currently working full-time at <a href="https://www.inboxhealth.com/">Inbox Health</a> as a Senior Software Engineer (SDE) in Test.
</p>
<p>
I enjoy reading, crafting, mobile gaming, drawing, and traveling. I also like to write about programming. You can read about challenging coding concepts, happenings in the programming world, and personal life lessons in <a href="/blog/">my blog.</a> A curious mind keeps me learning and understanding as I go along.
</p>
<p>
I currently live in Connecticut with my lovely wife and my everyday ponderings.
</p>
</div>
<h3 class="text-center">
Portfolio
</h3>
<p>
If you want to learn more about what I can do, check out my <a href="/portfolio/">portfolio page.</a>
</p>
<section class="flex flex-wrap flex-gap-4">
{% for workItem in majorWork %}
{% include workItem.liquid
workItem: workItem %}
{% endfor %}
</section>
<br>
<br>
<h3 class="text-h4 text-center">
Want to get in touch?
</h3>
<p class="text-center">
You can find me on <a target="_blank" rel="noopener" href="https://www.linkedin.com/in/maxwellantonucci/">LinkedIn,</a> <a target="_blank" rel="noopener" href="https://github.com/maxx1128">Github,</a> <a target="_blank" rel="noopener" href="http://codepen.io/max1128/">CodePen,</a> or <a target="_blank" rel="noopener" href="https://forms.gle/5t65UjwHEQdKxAj8A" target="_blank" rel="noopener">reach out to me directly.</a>
</p>
<br>
<br>
<br>
</div>