Removed unused menu entries

This commit is contained in:
Imbus 2023-10-21 01:55:47 +02:00
parent 4fc00eaf23
commit 4c398a40f6

View file

@ -26,7 +26,7 @@ function Root() {
function Navbar() {
return (
<div class="navbar bg-base-100 max-w-3xl max-w flex justify-evenly">
<a class="btn btn-ghost normal-case text-xl">hello</a>
<a class="btn btn-ghost normal-case text-xl">FrostByte</a>
<Menu />
<A href="/login" class="btn btn-ghost normal-case text-sm">
Login
@ -48,16 +48,6 @@ function Menu() {
New
</A>
</li>
<li>
<A href="/boards" end>
Boards
</A>
</li>
<li>
<A href="/login" end>
Login
</A>
</li>
</ul>
);
}