Revert "disable admin login"

This reverts commit eb15f4b29c.
This commit is contained in:
Thomas Ruoff
2024-09-10 23:44:24 +02:00
parent 32818b7492
commit c671b622d5
3 changed files with 44 additions and 17 deletions

View File

@@ -2,6 +2,7 @@ import { useState } from 'react'
import Head from 'next/head'
import Link from 'next/link'
import { useRouter } from 'next/router'
import User from './user'
const NAV_ENTRIES = [
{
@@ -59,6 +60,7 @@ export default function Header() {
</a>
)
})}
<User />
</nav>
<nav
onClick={() => setHamburgerOpen(!hamburgerOpen)}
@@ -96,6 +98,7 @@ export default function Header() {
</a>
)
})}
<User />
</div>
</div>
</div>