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 (

Minecraft Utilities

We provide a convenient API for Minecraft, simplifying the usage for players and developers.

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

{button.title}

); })}
); }