-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (67 loc) · 2.98 KB
/
index.html
File metadata and controls
71 lines (67 loc) · 2.98 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
---
layout: default
title: Home
---
<section class="featured-projects">
<div class="container">
<h2 class="section-title">Featured Projects</h2>
<div class="projects-grid">
{% assign visible_projects = site.projects | where_exp: "project", "project.disabled != true" %}
{% for project in visible_projects limit:3 %}
{% include project-card.html project=project %}
{% endfor %}
</div>
<div class="see-all">
<a href="{{ '/projects/' | relative_url }}" class="btn primary">View All Projects</a>
</div>
</div>
</section>
<section class="about-preview">
<div class="container">
<div class="about-preview-grid">
<div class="about-preview-content animate-on-scroll">
<h2 class="section-title">About Me</h2>
<p>I'm a Staff Software Engineer with over 11 years of experience building scalable, high-performance systems. I specialize in JVM technologies including Java, Kotlin, and Scala, with deep expertise in event-driven architectures and distributed systems.</p>
<p>Based in Missoula, Montana, I'm always open to remote opportunities where I can leverage my expertise in backend architecture and team leadership.</p>
<a href="{{ '/about/' | relative_url }}" class="btn outline">More About Me</a>
</div>
<div class="about-preview-stats animate-on-scroll">
<div class="stat-card">
<span class="stat-number">11+</span>
<span class="stat-label">Years Experience</span>
</div>
<div class="stat-card">
<span class="stat-number">7</span>
<span class="stat-label">Languages with Production Experience</span>
</div>
<div class="stat-card">
<span class="stat-number">∞</span>
<span class="stat-label">Curiosity</span>
</div>
</div>
</div>
</div>
</section>
<section class="latest-posts">
<div class="container">
<h2 class="section-title">Latest Posts</h2>
<div class="posts-grid">
{% assign visible_posts = site.posts | where_exp: "post", "post.disabled != true" %}
{% for post in visible_posts limit:3 %}
{% include post-card.html post=post %}
{% endfor %}
</div>
<div class="see-all">
<a href="{{ '/blog/' | relative_url }}" class="btn secondary">Read All Posts</a>
</div>
</div>
</section>
<section class="contact-cta">
<div class="container">
<div class="cta-content animate-on-scroll">
<h2>Let's Work Together</h2>
<p>Looking for a backend expert to help with your next project? I'm currently open to discussing new opportunities.</p>
<a href="mailto:{{ site.email }}" class="btn primary">Get In Touch</a>
</div>
</div>
</section>