0
0
mirror of https://github.com/yude-jp/yude.jp synced 2024-09-27 23:20:24 +09:00
yude.jp/pages/components/Footer/Footer.js

26 lines
749 B
JavaScript
Raw Normal View History

2021-12-11 18:17:20 +09:00
// Tailwind CSS
2021-05-23 14:02:27 +09:00
import "tailwindcss/tailwind.css";
2021-12-11 18:17:20 +09:00
// Next.js
2021-05-23 14:02:27 +09:00
import Link from 'next/link';
2021-12-11 18:17:20 +09:00
2021-12-11 18:07:22 +09:00
// i18n
2021-12-11 18:17:20 +09:00
import { useTranslation, useLanguageQuery } from 'next-export-i18n';
2021-06-14 12:36:18 +09:00
2021-12-11 18:07:22 +09:00
export default function Footer(props) {
2021-12-11 18:17:20 +09:00
const { t } = useTranslation();
const [query] = useLanguageQuery();
2021-06-14 12:36:18 +09:00
return (
<>
<div className="container mx-auto px-6">
<div className="flex flex-col items-center">
<div className="sm:w-full text-center py-6">
<p className="text-sm font-bold mb-2">
{t('footer')} / <Link href="https://github.com/yudejp/yude.jp"><a className="hover:underline">{t('source')}</a></Link>
</p>
2021-05-23 14:02:27 +09:00
</div>
2021-06-14 12:36:18 +09:00
</div>
</div>
</>
);
2021-05-23 14:02:27 +09:00
}