Update Home page

- Added Projects list section
- Added a link to blog page in Latest Blog posts section
This commit is contained in:
Foster Hangdaan 2023-10-23 07:28:20 -04:00
parent 3a4dd2ce30
commit 677744e214
Signed by: foster
GPG key ID: E48D7F49A852F112

View file

@ -20,9 +20,6 @@ export default function({ nav }) {
You'll most likely find me within <a href="https://code.fosterhangdaan.com">my lab</a> tinkering with my inventions and the latest JavaScript frameworks.
Other times, I help in the battle for an open web and for user privacy by contributing in the development of free and open-source software.
</p>
<p>
Check out <a href="https://code.fosterhangdaan.com/foster">my profile</a> to see a <a href="https://code.fosterhangdaan.com/foster?tab=repositories">list of available projects</a>.
</p>
<h2>Contact Me</h2>
<p>
The best method of reaching me is through my email: <a href="mailto:foster@hangdaan.email">foster@hangdaan.email</a>.
@ -30,6 +27,27 @@ export default function({ nav }) {
<p>
If you'd like an encrypted response, you can send me your GPG public key. You can find mine in the <a href="/gpg-key">GPG Key</a> page.
</p>
<h2>Projects</h2>
<ul>
<li>
<a href="https://code.fosterhangdaan.com/foster/grub-themes">GRUB Themes</a> &mdash; collection of themes for the GRand Unified Bootloader
</li>
<li>
<a href="https://code.fosterhangdaan.com/foster/website">This website</a> &mdash; my personal website &amp; blog
</li>
<li>
<a href="https://code.fosterhangdaan.com/foster/bitcoin-core-container">Bitcoin Core Container</a> &mdash; A containerized Bitcoin node
</li>
<li>
<a href="https://code.fosterhangdaan.com/foster/monero-node-container">Monero Node Container</a> &mdash; A containerized Monero node
</li>
<li>
<a href="https://code.fosterhangdaan.com/foster/electrum-container">Electrum Container</a> &mdash; A containerized Electrum server powered by Electrs
</li>
</ul>
<p>
Go to my lab for a complete list of <a href="https://code.fosterhangdaan.com/foster?tab=repositories">available projects</a>.
</p>
<h2>Latest Blog Posts</h2>
<ul>
{nav.menu("/blog/posts").children.sort(sortPosts).slice(0,3).map(post => (
@ -38,6 +56,9 @@ export default function({ nav }) {
</li>
))}
</ul>
<p>
<a href="/blog">View all blog posts</a>
</p>
</>
);
}