feat: add PGP key

This commit is contained in:
ayo 2026-05-30 23:03:59 +02:00
parent a6f7c1153c
commit 9e4eb6ef15
4 changed files with 45 additions and 11 deletions

View file

@ -52,7 +52,11 @@ import Footer from '../components/Footer.astro'
<h2 id="contact">Contact info</h2>
<p>My inbox is open to everyone.</p>
<ul>
<li>✉️ Email me: <a href="mailto:hi@ayo.run">hi@ayo.run</a></li>
<li>
✉️ Email me: <a href="mailto:ayo@ayco.io">ayo@ayco.io</a> &middot; <a
href="/pgp">PGP key</a
>
</li>
<li>
💬 Let's chat: <a href="https://chat.ayo.run/join/7IKG-h3nW-pD1H"
>chat.ayo.run</a
@ -68,11 +72,11 @@ import Footer from '../components/Footer.astro'
</ul>
</main>
<Footer />
</Layout>
<style>
ul {
list-style: none;
padding-left: 0;
}
</style>
<style>
ul {
list-style: none;
padding-left: 0;
}
</style>
</Layout>

View file

@ -59,9 +59,6 @@ const avatarSize = 150
I care about the <em>Web</em>, and I love to <em>create</em> stuff to <em
>inspire</em
> and <em>serve</em> others.
<!--
<a href="/about">More?</a>
-->
</p>
</section>
<section class="cards-section">

33
src/pages/pgp.astro Normal file
View file

@ -0,0 +1,33 @@
---
import Layout from '../layouts/Layout.astro'
import Footer from '../components/Footer.astro'
---
<Layout title="About" description="About Ayo Ayco and how to contact">
<main>
<code
><pre>
-----BEGIN PGP PUBLIC KEY BLOCK-----
mDMEahs0NhYJKwYBBAHaRw8BAQdAV2CfblniKxklPgW9eYt2gBl0jMHLwtjrQaY+
BQoWdIa0FkF5byBBeWNvIDxheW9AYXljby5pbz6ImQQTFgoAQRYhBBfxPV6P9zcr
E1RcOGXmv2QVKTxlBQJqGzQ2AhsDBQkB4TOABQsJCAcCAiICBhUKCQgLAgQWAgMB
Ah4HAheAAAoJEGXmv2QVKTxlIeYA/2WLvkDapBbVmGXoACAhqcTN93/CoPyzUbhN
hHE6mmAUAQDHsgCHmh3S/Rn4NRE3Gb41kiPTBWHrlYLTj3Kiw0ASB7g4BGobNDYS
CisGAQQBl1UBBQEBB0C6OEKEIPLaNDOM6JYhvvq0Q4Mk/B1eyZBKF/b4fQvlGgMB
CAeIfgQYFgoAJhYhBBfxPV6P9zcrE1RcOGXmv2QVKTxlBQJqGzQ2AhsMBQkB4TOA
AAoJEGXmv2QVKTxlMSQBAP5ta1kUFp3HAYwcun8qmoiVq1dEJSN1LnI7HlX4ucTl
AP0YLC768PFTBm9CM5T1BE0xjJ7s4dZSrVoI4n8RSe1nCA==
=MTsv
-----END PGP PUBLIC KEY BLOCK-----
</pre></code
>
</main>
<Footer />
</Layout>
<style>
code {
font-size: var(--font-size-sm);
}
</style>