Skip to content

Commit

Permalink
minor cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
yuhonas committed May 11, 2024
1 parent 8486a86 commit 3de8b8c
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resume/resume.clintp.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/master/schema.json",
"basics": {
"name": "Clint Plummer",
"label": "Engineering Manager",
"label": "Engineering Leader",
"image": "https://gravatar.com/avatar/47dcd08e87e97b88d915d83ec373da74?s=200",
"email": "hello@clintp.xyz",
"phone": "",
Expand Down
24 changes: 24 additions & 0 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@
// }
const { title, description } = Astro.props['content'];
import { Image } from 'astro:assets';
import resume from '../../resume/resume.clintp.json';
// import logo's into a hash
import logoGithub from '../images/logo-social-github.svg';
import logoLinkedin from '../images/logo-social-linkedin.svg';
const logos = {
github: logoGithub,
linkedin: logoLinkedin,
};
---

<!doctype html>
Expand All @@ -24,6 +36,18 @@ const { title, description } = Astro.props['content'];
<img src="/favicon.svg" class="inline-block w-8 object-cover rounded mr-2"/>
<h1 class="text-lg font-bold">$ ./clintp.xyz</h1>
</a>
<div class="flex gap-3">
{ resume.basics.profiles.map((profile) => (
<a href={ profile.url } class="text-white" rel="noopener noreferrer" target="_blank">
<Image src={logos[profile.network.toLowerCase()]}
width="30"
height="30"
class="hover:animate-spin invert"
alt={ profile.network }
/>
</a>
))}
</div>
</div>
</header>
<article class="mx-auto max-w-3xl p-4 text-white selection:bg-black selection:text-white leading-7 text-lg">
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ If you haven't hit max geek yet the following are also available
I can be reached at [hello@clintp.xyz](mailto:hello@clintp.xyz)

## Some of my Projects
In my freetime I like to work on open source projects amongst other things, here are some notable ones I created
In my freetime I like to work on [open source](https://github.com/yuhonas) projects amongst other things, here are some notable ones I created

{ resume.projects.map((project) => (
<div>
Expand Down

0 comments on commit 3de8b8c

Please sign in to comment.