Fix broken pgp link
All checks were successful
Deploy website / deploy (push) Successful in 18s

This commit is contained in:
2025-08-11 14:50:28 +10:00
parent e1dc0f17eb
commit b3966fbb37
2 changed files with 4 additions and 15 deletions

View File

@@ -3,13 +3,15 @@ import Layout from "@layouts/index.astro";
import Image from "@components/image.astro";
import miku from "@assets/miku.jpg";
import gato from "@assets/gato.jpg";
import pgp from "@assets/pgp.txt";
const links = {
git: { alt: "Git", href: "https://git.lua.re/" },
twt: { alt: "Twitter", href: "https://twitter.com/luanekos" },
mail: { alt: "Email", href: "mailto:lumi(at)lua.re" },
pgp: { alt: "PGP", href: pgp },
pgp: {
alt: "PGP",
href: "https://git.lua.re/luaneko/.profile/raw/branch/master/luaneko.pgp.pub",
},
// bsky: { alt: "Bluesky", href: "https://bsky.app/profile/lua.re" },
};
---