diff --git a/src/app/page.tsx b/src/app/page.tsx index 2ffde67..a0d209b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,8 +1,36 @@ +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 - Hello!

-

We provide a convenient wrapper for the Minecraft APIs, simplifying their usage for developers.

+
+

Minecraft Utilities

+

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

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

{button.title}

+ + ); + })} +
); }