mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2024-11-21 20:33:40 +00:00
fix: pgp url
This commit is contained in:
parent
f4ace2389b
commit
6bb0224812
1 changed files with 4 additions and 2 deletions
|
@ -54,7 +54,9 @@ export default function Footer () {
|
||||||
if(isDev) {
|
if(isDev) {
|
||||||
setFingerprint("FDE9 95C2 8C7E E563")
|
setFingerprint("FDE9 95C2 8C7E E563")
|
||||||
} else {
|
} else {
|
||||||
fetch('https://saahild.com/creds/fingerprint.txt').then(r=>r.text()).then(d => setFingerprint(d))
|
fetch(`//${window.location.host}/creds/fingerprint.txt`).then(r=>r.text()).then(d => setFingerprint(d)).catch(() => {
|
||||||
|
setFingerprint("FDE9 95C2 8C7E E563")
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// return () => signal.abort()
|
// return () => signal.abort()
|
||||||
|
@ -69,7 +71,7 @@ export default function Footer () {
|
||||||
</aside>
|
</aside>
|
||||||
|
|
||||||
<nav className='grid-flow-col gap-4 md:place-self-center md:justify-self-end flex'>
|
<nav className='grid-flow-col gap-4 md:place-self-center md:justify-self-end flex'>
|
||||||
<a href="http://saahild.com/creds/public.pgp.txt"><div className="badge mauve p-2" style={{ background: "var(--surface1)" }}><FaKey style={{marginRight: "5px"}}/>{" "}{fingerprint}</div></a>
|
<a href={`//${window.location.hostname}/creds/public.pgp.txt`}><div className="badge mauve p-2" style={{ background: "var(--surface1)" }}><FaKey style={{marginRight: "5px"}}/>{" "}{fingerprint}</div></a>
|
||||||
<a href='https://github.com/NeonGamerBot-QK' target='_blank'><Icon icon={git} /></a>
|
<a href='https://github.com/NeonGamerBot-QK' target='_blank'><Icon icon={git} /></a>
|
||||||
<a href='https://www.npmjs.com/~neongamerbot' target='_blank'><Icon icon={npm} /></a>
|
<a href='https://www.npmjs.com/~neongamerbot' target='_blank'><Icon icon={npm} /></a>
|
||||||
<div className='inline-flex gap-2 bottom mt-1'>
|
<div className='inline-flex gap-2 bottom mt-1'>
|
||||||
|
|
Loading…
Reference in a new issue