From c971930cc871b750fa75cb630384563c0c3705a2 Mon Sep 17 00:00:00 2001 From: Kevin Hoerr Date: Mon, 21 Nov 2022 15:46:03 -0500 Subject: Remove unused files; consistent icon styling (#11) * Remove unused files; consistent icon styling * Update GitHub actions --- src/pages/index.tsx | 106 +++++++++++++++++++++++++++------------------------- 1 file changed, 55 insertions(+), 51 deletions(-) (limited to 'src') diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 094b4ad..e4b4ec6 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -6,6 +6,7 @@ import BlockLink from "../components/BlockLink"; import Footer from "../components/Footer"; import { BlockBody, BlockHeader, Content } from "../styles"; import package_json from "../../package.json"; +import { IconContext } from "react-icons"; const VERSION = package_json.version; @@ -13,58 +14,61 @@ const VERSION = package_json.version; const IndexPage = (): React.ReactElement => { return (
- -
- -
- Hello! - -

- I'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. -

-

- 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. -

-

- 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. -
- - {" "} - @kjhoerr@cybr.es - - - kjhoerr on - GitHub - -
+ + +
+ +
+ Hello! + +

+ I'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. +

+

+ 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. +

+

+ 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. +
+ + @kjhoerr@cybr.es + + + kjhoerr on GitHub + +
-
); }; -- cgit