ぼざクリ タグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
767 B

  1. import React from "react"
  2. const TopNav: React.FC = () => {
  3. return (
  4. <nav className="bg-gray-800 text-white p-3 flex justify-between items-center w-full">
  5. <div className="flex items-center gap-4">
  6. <a href="/" className="text-xl font-bold text-orange-500">ぼざクリ タグ広場</a>
  7. <a href="/" className="hover:text-orange-500">広場</a>
  8. <a href="/deerjikists" className="hover:text-orange-500">ニジラー</a>
  9. <a href="/tags" className="hover:text-orange-500">タグ</a>
  10. <a href="/wiki" className="hover:text-orange-500">Wiki</a>
  11. </div>
  12. <div className="ml-auto pr-4">
  13. <a href="/login" className="hover:text-orange-500">ログイン</a>
  14. </div>
  15. </nav>
  16. )
  17. }
  18. export default TopNav