make the server page show a minecraft style server
Some checks failed
Deploy App / docker (ubuntu-latest) (push) Failing after 28s

This commit is contained in:
Lee
2024-04-19 16:51:58 +01:00
parent 0708def9a1
commit 78709ed060
8 changed files with 62 additions and 45 deletions

View File

@ -42,12 +42,12 @@ export default function NavBar(): ReactElement {
<div className="z-50">
<Link href="/" className="flex items-center gap-2">
<Logo />
<p className="hidden md:block">Minecraft Utilities</p>
<p className="hidden lg:block text-lg font-semibold">Minecraft Utilities</p>
</Link>
</div>
{/* Links */}
<div className="absolute inset-x-0 flex justify-center">
<div className="absolute inset-x-0 flex justify-start ml-16 lg:ml-0 lg:justify-center xs:justify-center">
<div className="flex gap-4">
{pages.map((page, index) => {
const isActive = path.includes(page.url);