mirror of
https://github.com/yude-jp/yude.jp
synced 2025-04-17 12:34:50 +09:00
Add public keys
This commit is contained in:
parent
7128518433
commit
17032fd526
@ -16,5 +16,9 @@
|
|||||||
"more": "More...",
|
"more": "More...",
|
||||||
"grade": "B2",
|
"grade": "B2",
|
||||||
"icon_1": "Icon: ",
|
"icon_1": "Icon: ",
|
||||||
"icon_2": ""
|
"icon_2": "",
|
||||||
|
"keys": "Public keys",
|
||||||
|
"download": "Download",
|
||||||
|
"fingerprint": "Digital fingerprint",
|
||||||
|
"view": "View"
|
||||||
}
|
}
|
@ -16,5 +16,9 @@
|
|||||||
"more": "さらに見る...",
|
"more": "さらに見る...",
|
||||||
"grade": "2年",
|
"grade": "2年",
|
||||||
"icon_1": "アイコン: ",
|
"icon_1": "アイコン: ",
|
||||||
"icon_2": "さん"
|
"icon_2": "さん",
|
||||||
|
"keys": "公開鍵",
|
||||||
|
"download": "ダウンロード",
|
||||||
|
"fingerprint": "電子指紋",
|
||||||
|
"view": "閲覧"
|
||||||
}
|
}
|
@ -1,8 +1,8 @@
|
|||||||
import Layout from "./components/Layout"
|
import Layout from "./components/Layout"
|
||||||
import Navbar from "./components/Navbar"
|
import Navbar from "./components/Navbar"
|
||||||
import useTranslation from 'next-translate/useTranslation'
|
import useTranslation from 'next-translate/useTranslation'
|
||||||
import { faDiscord, faTwitter, faGithub, faKeybase, faInstagram, faMastodon } from '@fortawesome/free-brands-svg-icons'
|
import { faDiscord, faTwitter, faGithub, faKeybase, faInstagram, faMastodon, faSteam } from '@fortawesome/free-brands-svg-icons'
|
||||||
import { faEnvelope, faBirthdayCake, faMapPin, faSchool, faPhone, faInfo } from '@fortawesome/free-solid-svg-icons'
|
import { faEnvelope, faBirthdayCake, faMapPin, faSchool, faPhone, faInfo, faKey, faDownload, faEye } from '@fortawesome/free-solid-svg-icons'
|
||||||
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
||||||
import Link from 'next/link'
|
import Link from 'next/link'
|
||||||
import Image from 'next/image'
|
import Image from 'next/image'
|
||||||
@ -30,7 +30,11 @@ export default function About(props) {
|
|||||||
const grade = t('grade')
|
const grade = t('grade')
|
||||||
const icon_1 = t('icon_1')
|
const icon_1 = t('icon_1')
|
||||||
const icon_2 = t('icon_2')
|
const icon_2 = t('icon_2')
|
||||||
|
const keys = t('keys')
|
||||||
|
const download = t('download')
|
||||||
|
const fingerprint = t('fingerprint')
|
||||||
|
const view = t('view')
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
||||||
<Layout title={about}>
|
<Layout title={about}>
|
||||||
@ -142,8 +146,50 @@ export default function About(props) {
|
|||||||
</a>
|
</a>
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
|
<div className="hover:underline">
|
||||||
|
<Link href="https://steamcommunity.com/id/yudejp">
|
||||||
|
<a>
|
||||||
|
<FontAwesomeIcon icon={faSteam} className="w-7 h-7 inline lg:w-10 lg:h-10 md:w-7 md:h-7"/>
|
||||||
|
<p className="font-mono text-xl">id/yudejp</p>
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{
|
||||||
|
// Keys
|
||||||
|
}
|
||||||
|
<div className="text-left my-6">
|
||||||
|
<p className="text-2xl"><FontAwesomeIcon icon={faKey} className="w-5 h-5 inline"/> {keys}</p>
|
||||||
|
<ul class="list-disc mx-5 my-2">
|
||||||
|
<li>
|
||||||
|
<span className="font-bold">GPG </span>
|
||||||
|
<Link href="/static/yudejp.gpg">
|
||||||
|
<a className="hover:underline">
|
||||||
|
<FontAwesomeIcon icon={faDownload} className="w-5 h-5 inline"/>
|
||||||
|
{download}
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
<p>{fingerprint}:
|
||||||
|
<code>3745 F270 DB4E 8975 6B07 62BE EB0F E5D9 25C4 A968</code>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<span className="font-bold">SSH </span>
|
||||||
|
<Link href="https://github.com/yudejp.keys">
|
||||||
|
<a className="hover:underline">
|
||||||
|
<FontAwesomeIcon icon={faEye} className="w-5 h-5 inline"/>
|
||||||
|
{view}
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
<p>{fingerprint}:
|
||||||
|
<code>2048 SHA256:xwSL4DORWmroWdC6P0GU1m1yZl/cXqjo9rCCWqqO+Dc no comment (RSA)</code>
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user