disable admin login

This commit is contained in:
Thomas Ruoff
2024-03-13 23:48:05 +01:00
parent 0486b99b3e
commit eb15f4b29c
3 changed files with 17 additions and 35 deletions

View File

@@ -2,7 +2,6 @@ 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 = [
{
@@ -60,7 +59,6 @@ export default function Header() {
</a>
)
})}
<User />
</nav>
<nav
onClick={() => setHamburgerOpen(!hamburgerOpen)}
@@ -98,7 +96,6 @@ export default function Header() {
</a>
)
})}
<User />
</div>
</div>
</div>