From 677744e214cbb9a22b7509b3cf1cd71a29a77cf8 Mon Sep 17 00:00:00 2001
From: Foster Hangdaan
Date: Mon, 23 Oct 2023 07:28:20 -0400
Subject: [PATCH] Update Home page
- Added Projects list section
- Added a link to blog page in Latest Blog posts section
---
index.tsx | 27 ++++++++++++++++++++++++---
1 file changed, 24 insertions(+), 3 deletions(-)
diff --git a/index.tsx b/index.tsx
index 022a19d..8c5e428 100644
--- a/index.tsx
+++ b/index.tsx
@@ -20,9 +20,6 @@ export default function({ nav }) {
You'll most likely find me within my lab 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.
-
- Check out my profile to see a list of available projects.
-
Contact Me
The best method of reaching me is through my email: foster@hangdaan.email.
@@ -30,6 +27,27 @@ export default function({ nav }) {
If you'd like an encrypted response, you can send me your GPG public key. You can find mine in the GPG Key page.
+ Projects
+
+
+ Go to my lab for a complete list of available projects.
+
Latest Blog Posts
{nav.menu("/blog/posts").children.sort(sortPosts).slice(0,3).map(post => (
@@ -38,6 +56,9 @@ export default function({ nav }) {
))}
+
+ View all blog posts
+
>
);
}