website/index.tsx
Foster Hangdaan dc0b5f0aa7
Remove Donation section
It's too early to expect donations at this time. Issue #1 has been
created to readd the section in the future.
2023-08-01 20:27:31 -04:00

25 lines
1.1 KiB
XML

export const header = {
heading: "Hi! My name is Foster",
subheading: "Congratulations, stranger. You have found the personal website of Foster Hangdaan.",
};
export default function({ comp }) {
return (
<>
<section>
<h2 id="about">{comp.icons.User()} About Me</h2>
<p>I am a software developer, open-source enthusiast, lover of pizza, renegade of funk and many more.</p>
<p>
I spend most of my time tinkering with computer servers or the latest JavaScript frameworks.
Other times, I help in the battle for an open web by contributing in the development of free and open-source software.
</p>
</section>
<section>
<h2 id="contact-me">{comp.icons.Mail()} Contact Me</h2>
<p>The primary method of reaching me is through my email: <a href="mailto:foster@hangdaan.email">foster@hangdaan.email</a>.</p>
<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>
</section>
</>
);
}