add about page

This commit is contained in:
Joseph Montanaro 2023-09-23 20:49:40 -07:00
parent 453dad1e0d
commit 5ec147f95f
2 changed files with 20 additions and 1 deletions

View File

@ -28,7 +28,7 @@
<nav> <nav>
<a data-sveltekit-preload-data="hover" href="/">Home</a> <a data-sveltekit-preload-data="hover" href="/">Home</a>
<a data-sveltekit-preload-data="hover" href="/posts">Posts</a> <a data-sveltekit-preload-data="hover" href="/posts">Posts</a>
<a data-sveltekit-preload-data="hover" href="/">About</a> <a data-sveltekit-preload-data="hover" href="/about">About</a>
</nav> </nav>
</div> </div>

View File

@ -0,0 +1,19 @@
<style>
.content {
max-width: var(--content-width);
margin: 0 auto;
}
</style>
<div class="content">
<h1>About Me</h1>
<p>(Joe's wife wrote this because Joe feels weird writing about himself.)</p>
<p>Joe is a quirky, techy Tolkienite with a beautiful singing voice, an uncanny ability to do mental math, a bony, un-cuddleable frame, and a big mushy heart. He enjoys bike riding, computers, watching TV, reading about computers, playing Breath of the Wild, building computers, talking about something called "programming languages", and spending time with his family (which often involves fixing their computers). He graduated with a Liberal Arts degree from Thomas Aquinas College, the school of his forebears. He often remarks that he has greatly benefitted from the critical thinking skills he acquired at his alma mater in his current line of work.</p>
<p>He has spent, at the current time, about 2 years working on this blog. Most of his posts are about all of the work it took and everything he learned making this blog. Unlike most "bloggers", he has started with many blog posts and no blog, rather than a blog without posts. "Someday", he says, "I will actually get that blog up". I always nod encouragingly.</p>
<p>If you are reading this, then that day has arrived. We hope you enjoy it, and maybe even learn something along the way.</p>
</div>