From a729cbd6128e4e61a8915342fdb9cbe7800eec55 Mon Sep 17 00:00:00 2001
From: Kevin Hoerr
Date: Mon, 21 Nov 2022 14:06:38 -0500
Subject: Update text in block; fix version from package-json (#9)
---
package-lock.json | 6 +++---
package.json | 2 +-
src/pages/index.tsx | 18 +++++++++++-------
3 files changed, 15 insertions(+), 11 deletions(-)
diff --git a/package-lock.json b/package-lock.json
index 2a62771..a72b326 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "submelon.tech",
- "version": "1668805149",
+ "version": "1669057338",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "submelon.tech",
- "version": "1668805149",
+ "version": "1669057338",
"dependencies": {
"gatsby": "5.0.1",
"gatsby-plugin-image": "3.0.0",
@@ -32,7 +32,7 @@
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
- "typescript": "^4.9.3"
+ "typescript": "latest"
}
},
"node_modules/@ampproject/remapping": {
diff --git a/package.json b/package.json
index 333bb6a..c0a6b81 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "submelon.tech",
- "version": "1668805149",
+ "version": "1669057338",
"private": true,
"description": "submelon.tech",
"author": "Kevin J Hoerr",
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 => {
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.
- 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.
- Kevin H.
@@ -60,7 +64,7 @@ const IndexPage = (): React.ReactElement => {
-
+
);
};
--
cgit