Liam
428a95c54d
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m4s
63 lines
1.6 KiB
TypeScript
63 lines
1.6 KiB
TypeScript
import Link from "next/link";
|
|
import { ReactElement } from "react";
|
|
import Logo from "./logo";
|
|
import { RedirectButton } from "./rediect-button";
|
|
import { ToggleThemeButton } from "./theme-toggle-button";
|
|
|
|
type Page = {
|
|
/**
|
|
* The name of the button for the navbar.
|
|
*/
|
|
name: string;
|
|
|
|
/**
|
|
* The URL to go to.
|
|
*/
|
|
url: string;
|
|
|
|
/**
|
|
* Whether clicking the button will
|
|
* open the link in a new tab.
|
|
*/
|
|
openInNewTab?: boolean;
|
|
};
|
|
|
|
const pages: Page[] = [
|
|
{ name: "Player", url: "/player" },
|
|
{ name: "Server", url: "/server/java" },
|
|
{ name: "Mojang", url: "/mojang/status" },
|
|
{ name: "API", url: "https://api.mcutils.xyz", openInNewTab: true },
|
|
];
|
|
|
|
export default function NavBar(): ReactElement {
|
|
return (
|
|
<div className="bg-secondary w-full rounded-lg flex items-center gap-3 mt-2 bg-opacity-85 h-12">
|
|
<Link href="/" className="flex items-center gap-2 pl-3 pr-1">
|
|
<Logo />
|
|
<p className="hidden md:block">Minecraft Utilities</p>
|
|
</Link>
|
|
|
|
<div className="flex-grow" />
|
|
|
|
<div className="flex gap-4">
|
|
{pages.map((page, index) => {
|
|
return <RedirectButton key={index} title={page.name} url={page.url} openInNewTab={page.openInNewTab} />;
|
|
})}
|
|
</div>
|
|
|
|
<div className="flex-grow" />
|
|
|
|
<div className="mr-4 flex items-center gap-2">
|
|
<div className="hidden md:block">
|
|
<RedirectButton
|
|
title="Star us on Github!"
|
|
url="https://github.com/RealFascinated/minecraft-helper"
|
|
openInNewTab
|
|
/>
|
|
</div>
|
|
<ToggleThemeButton />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|