design tweaks

This commit is contained in:
2025-02-03 22:33:22 -05:00
parent 46202f3337
commit 74797c161b
10 changed files with 81 additions and 40 deletions
+48
View File
@@ -0,0 +1,48 @@
---
export const prerender = true;
import Layout from '@layouts/Layout.astro';
---
<Layout title="About">
<img src="/portrait.jpg" alt="me" class="portrait" />
<p>My name is <strong>Graham</strong>, a full-stack web developer.</p>
<p>
When I'm not writing code, I'm usually enjoying one of my other hobbies;
video games, board games, music, hiking, photography, art, the list goes
on...
</p>
<p>
I also like writing about stuff, so I put together this site to share
whatever's on my mind about the world of tech, gaming, life, web
development, and whatever else strikes my fancy.
</p>
<p>
If your interested in checking out my web dev projects, check out <a
href="https://ghall.dev/"
target="_blank">my portfolio</a
>.
</p>
<p>
If you want to get in touch, I'm on <a
rel="me"
href="https://mastodon.social/@ghalldev"
target="_blank">Mastodon</a
>.
</p>
<p>
My portrait was drawn by <a
href="https://www.nataliavazquezgarcia.com"
target="_blank">Natalia Vazquez</a
>.
</p>
</Layout>
<style>
.portrait {
display: block;
max-width: 250px;
margin: auto;
margin-bottom: 26px;
border-radius: 200px;
}
</style>
-16
View File
@@ -1,16 +0,0 @@
---
layout: ../layouts/About.astro
title: About Me
---
My name is **Graham**, a full-stack web developer.
When I'm not writing code, I'm usually enjoying one of my other hobbies; video games, board games, music, hiking, photography, art, the list goes on...
I also like writing about stuff, so I put together this site to share whatever's on my mind about the world of tech, gaming, life, web development, and whatever else strikes my fancy.
If your interested in checking out my web dev projects, check out [my portfolio](https://ghall.dev/).
If you want to get in touch, I'm on <a rel="me" href="https://mastodon.social/@ghalldev">Mastodon</a>.
My portrait was drawn by [Natalia Vazquez](https://www.nataliavazquezgarcia.com).