ayco.io-astro/src/pages/about.astro
2025-01-08 16:23:14 +01:00

55 lines
1.5 KiB
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
import Layout from '../layouts/Layout.astro'
import Footer from '../components/Footer.astro'
---
<Layout>
<main>
<h1>Hi, I'm Ayo!</h1>
<p>
I am a newbie engineering manager at a large bank headquartered in
Amsterdam. I'm also a certified software architecture professional
(CPSAF®) by <a href="https://isaqb.org" target="_blank">isaqb.org</a>.
</p>
<p>
I work on several hobby projects such as <a href="https://cozy.pub"
>cozy.pub</a
>, <a href="https://mcfly.js.org">mcfly.js.org</a>, and <a
href="https://webcomponent.io">webcomponent.io</a
>, as well as other <a href="https://www.npmjs.com/~aayco"
>small libraries</a
>.
</p>
<p>
I also try to help out in various ways on Fediverse projects like <a
href="https://elk.zone">elk.zone</a
>,
<a href="https://webtoo.ls">webtoo.ls</a>, and <a
href="https://m.webtoo.ls/@vitest">vitest's fedi presence</a
>.
</p>
<h2>Contact info</h2>
<ul>
<li>🏡 home: <a href="https://ayo.ayco.io">ayo.ayco.io</a></li>
<li>✍️ blog: <a href="https://ayos.blog">ayos.blog</a></li>
<li>
👀 Mastodon: <a href="https://social.ayco.io/@ayo">@ayo@ayco.io</a>
</li>
<li>✉️ mail: <a href="mailto:ayo@ayco.io">ayo@ayco.io</a></li>
<li>💬 discord: ayoayco</li>
<li>💬 signal: ayo.88</li>
</ul>
<Footer />
</main>
</Layout>
<style>
ul {
list-style: none;
padding-left: 0;
}
</style>