aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorKevin Hoerr <kjhoerr@protonmail.com>2023-02-22 17:04:52 -0500
committerGitHub <noreply@github.com>2023-02-22 17:04:52 -0500
commit4121d833717f0ec4043cdf054e7bdcd3f7e07858 (patch)
tree428dc7efefb2d78e3def1937d50fce26f2c95237 /src
parentb82e01baf23c5b422249412f04034b87f304b8a1 (diff)
downloadsubmelon.dev-4121d833717f0ec4043cdf054e7bdcd3f7e07858.tar.gz
submelon.dev-4121d833717f0ec4043cdf054e7bdcd3f7e07858.tar.bz2
submelon.dev-4121d833717f0ec4043cdf054e7bdcd3f7e07858.zip
Updates for 2023 (#102)
* Updates for 2023 * Additional tweaks
Diffstat (limited to 'src')
-rw-r--r--src/components/Layout.tsx2
-rw-r--r--src/pages/index.tsx36
2 files changed, 22 insertions, 16 deletions
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>
);