From b3966fbb3709b877b9db137cb563946917e291b9 Mon Sep 17 00:00:00 2001 From: luaneko Date: Mon, 11 Aug 2025 14:50:28 +1000 Subject: [PATCH] Fix broken pgp link --- src/assets/pgp.txt | 13 ------------- src/pages/index.astro | 6 ++++-- 2 files changed, 4 insertions(+), 15 deletions(-) delete mode 100644 src/assets/pgp.txt diff --git a/src/assets/pgp.txt b/src/assets/pgp.txt deleted file mode 100644 index 1f9131a..0000000 --- a/src/assets/pgp.txt +++ /dev/null @@ -1,13 +0,0 @@ ------BEGIN PGP PUBLIC KEY BLOCK----- - -mDMEZy78LBYJKwYBBAHaRw8BAQdAj9u/jcNZIsKRqIRg+0MBEqGIklrvAo5Iqi2T -woCdASa0FWx1YW5la28gPGx1bWlAbHVhLnJlPoiTBBMWCgA7FiEEP8xMvmdCftGi -tWpOQGgJuHY/8HoFAmcu/CwCGwMFCwkIBwICIgIGFQoJCAsCBBYCAwECHgcCF4AA -CgkQQGgJuHY/8HrGFAD+KPjYot3+9j9tdAWP/u7p6jCsji9K9oFPF6w9rSGpLfAA -/1YVpy8c1KnqbQEs4VlB7tU8i5OgD8MDAaHr3aUTUBELuDgEZy78LBIKKwYBBAGX -VQEFAQEHQEX7YyggyzRcz+h2pqg2YgejCsWC6yaBqqqDwxIZvnUDAwEIB4h4BBgW -CgAgFiEEP8xMvmdCftGitWpOQGgJuHY/8HoFAmcu/CwCGwwACgkQQGgJuHY/8Hpm -AAD+Pg/UwZ/sJ6EQykVUEb2d/Tlb9LvWsr+ALTP1y9Z7M1ABAOfCaAIINme9lzJg -z3xBewGr/7sycamQxQsBOwG5GcwB -=Juwg ------END PGP PUBLIC KEY BLOCK----- diff --git a/src/pages/index.astro b/src/pages/index.astro index 6151e37..2503c84 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -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" }, }; ---