import Link from "next/link"; type Button = { title: string; url: string; }; const buttons: Button[] = [ { title: "Get Started", url: "/player/Notch" }, { title: "Documentation", url: "https://api.mcutils.xyz/swagger-ui.html" }, ]; export default function Home(): JSX.Element { return (
Minecraft Utilities offers you many endpoints to get information about a minecraft server or a player.
We offer you a simple and easy to use API.
{button.title}
); })}