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

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.

{buttons.map((button, index) => { return (

{button.title}

); })}
); }