diff --git a/index.md b/index.md deleted file mode 100644 index 46c1fae..0000000 --- a/index.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -description: Software developer and open-source enthusiast. ---- - -I am a software developer, open-source enthusiast, lover of pizza, and renegade of funk. I speak fluent English and native Filipino. I also plan on learning German. - -You'll most likely find me within [my lab](https://code.fosterhangdaan.com/foster){target="_blank"} 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. - -## Contact Me - -The best method of reaching me is through my email: [foster@hangdaan.email](mailto:foster@hangdaan.email). - -If you'd like an encrypted response, you can send me your GPG public key. You can find mine in the [GPG Key](/gpg-key) page. diff --git a/index.tsx b/index.tsx new file mode 100644 index 0000000..9e0716c --- /dev/null +++ b/index.tsx @@ -0,0 +1,39 @@ +export const description = "Software developer and open-source enthusiast."; + +export default function({ nav }) { + const sortPosts = (a,b) => { + if (a.data.date < b.data.date) { + return 1; + } else if (a.data.date > b.data.date) { + return -1; + } else { + return 0; + } + }; + + return ( + <> +

+ I am a software developer, open-source enthusiast, lover of pizza, and renegade of funk. I speak fluent English and native Filipino. I also plan on learning German. +

+

+ 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. +

+

Contact Me

+

+ The best method of reaching me is through my email: foster@hangdaan.email. +

+

+ If you'd like an encrypted response, you can send me your GPG public key. You can find mine in the GPG Key page. +

+

Latest Blog Posts

+ + + ); +}