yude.jp/pages/components/Footer/Footer.js

20 lines
666 B
JavaScript
Raw Normal View History

2021-05-23 14:02:27 +09:00
import "tailwindcss/tailwind.css";
import Link from 'next/link';
2021-12-11 18:07:22 +09:00
// i18n
import { useTranslation, useLanguageQuery, LanguageSwitcher } 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-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
}