0
0
mirror of https://github.com/yude-jp/yude.jp synced 2024-06-09 23:36:01 +09:00
yude.jp/pages/components/Navbar.js

26 lines
775 B
JavaScript
Raw Normal View History

import "tailwindcss/tailwind.css";
import Link from 'next/link';
import LangSelector from "./LangSelector"
2021-05-23 10:37:23 +09:00
import ThemeSelector from "./ThemeSelector"
const Navbar = () => {
return (
<>
2021-02-06 14:55:35 +09:00
<nav className='flex items-center flex-wrap p-3'>
<Link href='/'>
2021-05-26 07:53:02 +09:00
<a className='inline-flex items-center p-2'>
2021-03-06 01:46:16 +09:00
<span className='text-xl text-black font-bold tracking-wide dark:text-white font-mono animate-heartbeat'>
yude.jp
</span>
</a>
</Link>
2021-05-26 08:01:02 +09:00
<div className="absolute right-0">
2021-05-23 10:37:23 +09:00
<ThemeSelector />
2021-12-11 18:07:22 +09:00
{/* <LangSelector /> */}
<LanguageSwitcher lang="ja" />
</div>
</nav>
</>
);
};
export default Navbar