aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/pages/index.tsx
blob: 10ba281b5acea521204474b4b5c3e41f5356e972 (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
import React from "react";
import { StaticImage } from "gatsby-plugin-image";
import { FaGithub, FaMastodon } from "react-icons/fa";
import { BlockLink, Layout } from "../components";
import { BlockBody, BlockHeader } from "../styles";

const IndexPage = (): React.ReactElement => {
  return (
    <Layout>
      <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&apos;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 and NextJS for the front-end. For
          back-end development, I have built services enabled by Java with
          Spring Boot, Quarkus, and rust+actix-web with a GraphQL serving public
          API.
        </p>
        <p>
          I run a personal Kubernetes cluster at home using MicroOS and k3d. I
          have also run multiple clusters via DigitalOcean with deployments
          dedicated for hosting git projects, CI/CD, and code coverage. Since
          then all projects have been moved to GitHub.
        </p>
        <em>- Kevin H.</em>
      </BlockBody>
      <BlockLink
        href="https://cybr.es/@kjhoerr"
        rel="me"
        aria-label="My Mastodon account"
      >
        <FaMastodon /> @kjhoerr@cybr.es
      </BlockLink>
      <BlockLink
        href="https://github.com/kjhoerr"
        rel="me"
        aria-label="My GitHub account with my most active personal projects"
      >
        <FaGithub /> kjhoerr on GitHub
      </BlockLink>
    </Layout>
  );
};

export default IndexPage;
export { Head } from "../components/SEO";