feat: add PGP key
This commit is contained in:
parent
a6f7c1153c
commit
9e4eb6ef15
4 changed files with 45 additions and 11 deletions
|
|
@ -52,7 +52,11 @@ import Footer from '../components/Footer.astro'
|
||||||
<h2 id="contact">Contact info</h2>
|
<h2 id="contact">Contact info</h2>
|
||||||
<p>My inbox is open to everyone.</p>
|
<p>My inbox is open to everyone.</p>
|
||||||
<ul>
|
<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> · <a
|
||||||
|
href="/pgp">PGP key</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
💬 Let's chat: <a href="https://chat.ayo.run/join/7IKG-h3nW-pD1H"
|
💬 Let's chat: <a href="https://chat.ayo.run/join/7IKG-h3nW-pD1H"
|
||||||
>chat.ayo.run</a
|
>chat.ayo.run</a
|
||||||
|
|
@ -68,11 +72,11 @@ import Footer from '../components/Footer.astro'
|
||||||
</ul>
|
</ul>
|
||||||
</main>
|
</main>
|
||||||
<Footer />
|
<Footer />
|
||||||
</Layout>
|
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
ul {
|
ul {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
</Layout>
|
||||||
|
|
|
||||||
|
|
@ -59,9 +59,6 @@ const avatarSize = 150
|
||||||
I care about the <em>Web</em>, and I love to <em>create</em> stuff to <em
|
I care about the <em>Web</em>, and I love to <em>create</em> stuff to <em
|
||||||
>inspire</em
|
>inspire</em
|
||||||
> and <em>serve</em> others.
|
> and <em>serve</em> others.
|
||||||
<!--
|
|
||||||
<a href="/about">More?</a>
|
|
||||||
-->
|
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="cards-section">
|
<section class="cards-section">
|
||||||
|
|
|
||||||
33
src/pages/pgp.astro
Normal file
33
src/pages/pgp.astro
Normal 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>
|
||||||
Loading…
Reference in a new issue