0
0
mirror of https://github.com/yude-jp/yude.jp synced 2024-09-30 00:20:42 +09:00
yude.jp/pages/components/Navbar.js
2021-12-11 18:55:57 +09:00

36 lines
964 B
JavaScript

// Tailwind CSS
import "tailwindcss/tailwind.css";
// Next.js
import Link from 'next/link';
// Components
import LangSelector from "./LangSelector"
import ThemeSelector from "./ThemeSelector"
// i18n
import { useTranslation, useLanguageQuery, LanguageSwitcher } from 'next-export-i18n';
const Navbar = () => {
const { t } = useTranslation();
const [query] = useLanguageQuery();
return (
<>
<nav className='flex items-center flex-wrap p-3'>
<Link href={{ pathname: '/', query: query }}>
<a className='inline-flex items-center p-2'>
<span className='text-xl text-black font-bold tracking-wide dark:text-white font-mono animate-heartbeat'>
yude.jp
</span>
</a>
</Link>
<div className="absolute right-0">
<ThemeSelector />
<LangSelector />
</div>
</nav>
</>
);
};
export default Navbar