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