blob: 7d92d7407e2a489052c7de87c867a7cee21dcc8d (
plain) (
blame)
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
|
import React from "react";
import { StaticImage } from "gatsby-plugin-image";
import "../styles/main.css";
import { FaGithub, FaMastodon } from "react-icons/fa";
import BlockLink from "../components/BlockLink";
import Footer from "../components/Footer";
import { BlockBody, BlockHeader, Content } from "../styles";
import { version } from "../../package.json";
// markup
const IndexPage = (): React.ReactElement => {
return (
<main>
<Content>
<div>
<StaticImage
src="../images/main.png"
alt="Picture of Kevin Hoerr"
placeholder="tracedSVG"
layout="fixed"
width={350}
height={350}
/>
</div>
<BlockHeader>Hello!</BlockHeader>
<BlockBody>
<p>
I'm a computer science and math graduate from Millersville
University. I work as an IT consultant and specialize in development
operations and systems validation for web applications.
</p>
<p>
My most recent projects have been focused on full-stack development.
I use Kubernetes for orchestration, NextJS for front-end, and
rust+actix-web for my backend services with GraphQL serving as the
public API.
</p>
<p>
This site was recently rebuilt using GatsbyJS since the instance
formerly holding this website broke during upgrades. Thank goodness
for backups.
</p>
<em>- Kevin H.</em>
</BlockBody>
<BlockLink
href="https://cybr.es/@kjhoerr"
rel="me"
aria-label="My Mastodon account"
>
<FaMastodon size={20} style={{ marginBottom: "-4px" }} />{" "}
@kjhoerr@cybr.es
</BlockLink>
<BlockLink
href="https://github.com/kjhoerr"
rel="me"
aria-label="My GitHub account with my most active personal projects"
>
<FaGithub size={20} style={{ marginBottom: "-4px" }} /> kjhoerr on
GitHub
</BlockLink>
</Content>
<Footer timestamp={version} />
</main>
);
};
export default IndexPage;
export { Head } from "../components/SEO";
|