aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorKevin Hoerr <kjhoerr@protonmail.com>2022-11-21 14:06:38 -0500
committerGitHub <noreply@github.com>2022-11-21 14:06:38 -0500
commita729cbd6128e4e61a8915342fdb9cbe7800eec55 (patch)
tree3ca62d5b2292d2a4c2e3eaaea6420f4f149e67e5 /src
parent5ac7a57c8a083b649897e3d3ca985546df4123d4 (diff)
downloadsubmelon.dev-a729cbd6128e4e61a8915342fdb9cbe7800eec55.tar.gz
submelon.dev-a729cbd6128e4e61a8915342fdb9cbe7800eec55.tar.bz2
submelon.dev-a729cbd6128e4e61a8915342fdb9cbe7800eec55.zip
Update text in block; fix version from package-json (#9)
Diffstat (limited to 'src')
-rw-r--r--src/pages/index.tsx18
1 files changed, 11 insertions, 7 deletions
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
index 7d92d74..094b4ad 100644
--- a/src/pages/index.tsx
+++ b/src/pages/index.tsx
@@ -5,7 +5,9 @@ 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";
+import package_json from "../../package.json";
+
+const VERSION = package_json.version;
// markup
const IndexPage = (): React.ReactElement => {
@@ -31,14 +33,16 @@ const IndexPage = (): React.ReactElement => {
</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
+ 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>
- This site was recently rebuilt using GatsbyJS since the instance
- formerly holding this website broke during upgrades. Thank goodness
- for backups.
+ 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>
@@ -60,7 +64,7 @@ const IndexPage = (): React.ReactElement => {
</BlockLink>
</Content>
- <Footer timestamp={version} />
+ <Footer timestamp={VERSION} />
</main>
);
};