-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (108 loc) · 3.95 KB
/
Copy pathindex.html
File metadata and controls
112 lines (108 loc) · 3.95 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
109
110
111
112
<!DOCTYPE html>
<html lang="en" class="h-full">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Mark Baltrusaitis</title>
<meta
name="description"
content="Mark Baltrusaitis — SVP of Information Systems at Expedient. Leading teams to solve complex business challenges with web applications, cloud-native technologies, BI, and Scrum."
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['DM Sans', 'ui-sans-serif', 'system-ui', 'sans-serif'],
display: ['DM Serif Display', 'ui-serif', 'Georgia', 'serif'],
},
colors: {
ink: '#1a1a1a',
paper: '#fafaf7',
muted: '#6b6b66',
rule: '#1a1a1a',
accent: '#b04a2f',
},
},
},
};
</script>
</head>
<body class="min-h-full bg-paper font-sans text-ink antialiased">
<main
class="mx-auto flex min-h-screen max-w-2xl flex-col justify-center px-6 py-20 sm:px-10"
>
<header class="mb-10">
<h1
class="font-display text-6xl font-normal leading-[0.95] tracking-tight sm:text-7xl"
>
Mark<br />Baltrusaitis
</h1>
<div class="mt-8 h-px w-16 bg-rule"></div>
<p
class="mt-6 text-sm font-medium uppercase tracking-[0.18em] text-muted"
>
SVP, Information Systems ·
<a
href="https://www.expedient.com"
class="underline decoration-1 underline-offset-[4px] transition hover:text-accent hover:decoration-accent"
>Expedient</a
>
</p>
</header>
<section
class="mb-14 max-w-xl text-lg leading-relaxed text-ink/85 sm:text-xl"
>
<p>
My passion is leading teams to solve complex business challenges. I
specialize in web applications, cloud-native technologies, business
intelligence and Scrum. I'm a Pitt MBA graduate and a lifelong
learner, an avid fitness enthusiast, a husband, and father.
</p>
</section>
<nav aria-label="Social links" class="text-base sm:text-lg">
<ul
class="flex flex-wrap items-center gap-x-2 gap-y-2 font-medium text-ink"
>
<li>
<a
href="https://markbalt.medium.com"
class="underline decoration-1 underline-offset-[6px] transition hover:text-accent hover:decoration-accent"
>Medium</a
>
</li>
<li aria-hidden="true" class="text-muted">·</li>
<li>
<a
href="https://www.linkedin.com/in/markbalt"
class="underline decoration-1 underline-offset-[6px] transition hover:text-accent hover:decoration-accent"
>LinkedIn</a
>
</li>
<li aria-hidden="true" class="text-muted">·</li>
<li>
<a
href="https://github.com/markbalt"
class="underline decoration-1 underline-offset-[6px] transition hover:text-accent hover:decoration-accent"
>GitHub</a
>
</li>
</ul>
</nav>
<footer class="mt-20 text-xs uppercase tracking-[0.18em] text-muted">
<p>© <span id="year"></span> Mark Baltrusaitis</p>
</footer>
</main>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>