diff options
| author | Kevin Hoerr <kjhoerr@protonmail.com> | 2022-11-21 15:46:03 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-21 15:46:03 -0500 |
| commit | c971930cc871b750fa75cb630384563c0c3705a2 (patch) | |
| tree | cc0a984cd46280741d333965090d2e16d38fc8ab /src | |
| parent | 113e6181be8d6d81b18a9e1f83a93ccc1a7e4b5e (diff) | |
| download | submelon.dev-c971930cc871b750fa75cb630384563c0c3705a2.tar.gz submelon.dev-c971930cc871b750fa75cb630384563c0c3705a2.tar.bz2 submelon.dev-c971930cc871b750fa75cb630384563c0c3705a2.zip | |
Remove unused files; consistent icon styling (#11)
* Remove unused files; consistent icon styling
* Update GitHub actions
Diffstat (limited to 'src')
| -rw-r--r-- | src/pages/index.tsx | 106 |
1 files changed, 55 insertions, 51 deletions
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 ( <main> - <Content> - <div> - <StaticImage - src="../images/main.png" - alt="Picture of Kevin Hoerr" - placeholder="tracedSVG" - layout="fixed" - width={350} - height={350} - /> - </div> - <BlockHeader>Hello!</BlockHeader> - <BlockBody> - <p> - 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. - </p> - <p> - 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. - </p> - <p> - 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> - <BlockLink - href="https://cybr.es/@kjhoerr" - rel="me" - aria-label="My Mastodon account" - > - <FaMastodon size={20} style={{ marginBottom: "-4px" }} />{" "} - @kjhoerr@cybr.es - </BlockLink> - <BlockLink - href="https://github.com/kjhoerr" - rel="me" - aria-label="My GitHub account with my most active personal projects" - > - <FaGithub size={20} style={{ marginBottom: "-4px" }} /> kjhoerr on - GitHub - </BlockLink> - </Content> + <IconContext.Provider + value={{ size: "20", style: { marginBottom: "-4px" } }} + > + <Content> + <div> + <StaticImage + src="../images/main.png" + alt="Picture of Kevin Hoerr" + placeholder="tracedSVG" + layout="fixed" + width={350} + height={350} + /> + </div> + <BlockHeader>Hello!</BlockHeader> + <BlockBody> + <p> + 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. + </p> + <p> + 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. + </p> + <p> + 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> + <BlockLink + href="https://cybr.es/@kjhoerr" + rel="me" + aria-label="My Mastodon account" + > + <FaMastodon /> @kjhoerr@cybr.es + </BlockLink> + <BlockLink + href="https://github.com/kjhoerr" + rel="me" + aria-label="My GitHub account with my most active personal projects" + > + <FaGithub /> kjhoerr on GitHub + </BlockLink> + </Content> - <Footer timestamp={VERSION} /> + <Footer timestamp={VERSION} /> + </IconContext.Provider> </main> ); }; |
