aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--package-lock.json2
-rw-r--r--src/components/Layout.tsx2
-rw-r--r--src/pages/index.tsx36
3 files changed, 23 insertions, 17 deletions
diff --git a/package-lock.json b/package-lock.json
index 9d7d351..6f0b0a7 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -36,7 +36,7 @@
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
- "typescript": "*"
+ "typescript": "latest"
}
},
"node_modules/@ampproject/remapping": {
diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 4f93fec..fec336f 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -22,7 +22,7 @@ const Layout = ({ children }: LayoutProps) => {
<Footer>
<span>
- &copy;2022 kjhoerr@https://submelon.dev/:
+ &copy;2023 kjhoerr@https://submelon.dev/:
{getTimestamp(Number(version))}
</span>
</Footer>
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
index 7128720..fe407c4 100644
--- a/src/pages/index.tsx
+++ b/src/pages/index.tsx
@@ -1,6 +1,6 @@
import React from "react";
import { StaticImage } from "gatsby-plugin-image";
-import { FaGithub, FaMastodon } from "react-icons/fa";
+import { FaCode, FaGithub, FaMastodon } from "react-icons/fa";
import { BlockLink, Layout } from "../components";
import { BlockBody, BlockHeader } from "../styles";
@@ -32,32 +32,38 @@ const IndexPage = (): React.ReactElement => {
<p>
Most of my development experience is focused around full stack
development. For the front-end I use TypeScript and ReactJS using
- create-react-app or NextJS. For back-end systems I have experience
- using Java with Spring Boot and rust with actix-web. To mediate APIs I
- have used Apache Kafka, OpenAPI, and GraphQL.
+ create-react-app or NextJS. For back-end systems I have used both Java
+ with Spring Boot and rust with actix-web extensively. To mediate APIs
+ I have used Apache Kafka, OpenAPI, and GraphQL.
</p>
<p>
- My free time is spent around general computing hobbies. When I&apos;m
- not trying out new application frameworks I am fiddling around with
- Guix or NixOS. I run a kubernetes cluster at home to manage, maintain,
- and secure my personal network in conjunction with experimenting with
- distributed workloads.
+ My free time is spent engaging in general computing hobbies. When
+ I&apos;m not trying out new application frameworks, I am fiddling
+ around with Guix or NixOS. I run a kubernetes cluster at home to
+ manage, maintain, and secure my personal network as well as
+ experimenting with distributed workloads.
</p>
<em>- Kevin H.</em>
</BlockBody>
<BlockLink
- href="https://cybr.es/@kjhoerr"
+ href="https://github.com/kjhoerr"
rel="me"
- aria-label="My Mastodon account"
+ aria-label="My GitHub account with my most active personal projects"
>
- <FaMastodon /> @kjhoerr@cybr.es
+ <FaGithub /> kjhoerr on GitHub
</BlockLink>
<BlockLink
- href="https://github.com/kjhoerr"
+ href="https://github.com/kjhoerr/pantry"
+ aria-label="Source code repository of Kevin's current pet project Pantry"
+ >
+ <FaCode /> Pantry (pet project)
+ </BlockLink>
+ <BlockLink
+ href="https://cybr.es/@kjhoerr"
rel="me"
- aria-label="My GitHub account with my most active personal projects"
+ aria-label="My Mastodon account"
>
- <FaGithub /> kjhoerr on GitHub
+ <FaMastodon /> @kjhoerr@cybr.es
</BlockLink>
</Layout>
);