0
0
mirror of https://github.com/yude-jp/yude.jp synced 2025-01-03 18:10:12 +09:00

Compare commits

..

No commits in common. "ff5247999ed8afbe8d18bf2c29dc6acb65e871fc" and "2206cf25264f41a99d6b806a1bee71d5d8f59ee7" have entirely different histories.

3 changed files with 2 additions and 8 deletions

View File

@ -1,5 +1,4 @@
{
"footer": "This page is licensed under the MIT License.",
"source": "Source code",
"tos": "yude.jp Terms of Service"
"source": "Source code"
}

View File

@ -1,5 +1,4 @@
{
"footer": "このページは MIT License の下でライセンスされています。",
"source": "ソースコード",
"tos": "yude.jp サービス利用規約"
"source": "ソースコード"
}

View File

@ -14,7 +14,6 @@ const Layout = (props) => {
const { t, lang } = useTranslation("common")
const footer = t('footer')
const source = t('source')
const tos = t('tos')
return (
<div className="page">
<Head>
@ -39,9 +38,6 @@ const Layout = (props) => {
<p className="text-sm font-bold mb-2 text-gray-400">
{footer} / <Link href="https://github.com/yudemoe/yude.jp"><a className="hover:underline">{source}</a></Link>
</p>
<p className="text-sm font-bold mb-2 text-gray-400">
<Link href="https://wiki.yude.jp/terms"><a className="hover:underline">{tos}</a></Link>
</p>
</div>
</div>
</div>