import Link from "next/link"; type Button = { title: string; url: string; }; const buttons: Button[] = [ { title: "Get Started", url: "/player" }, { title: "Documentation", url: "https://api.mcutils.xyz/swagger-ui.html" }, ]; export default function Home() { return (
We provide a convenient API for Minecraft, simplifying the usage for players and developers.
{button.title}
); })}