updated the main page
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 53s

This commit is contained in:
Lee 2024-04-14 19:01:57 +01:00
parent c86e47f3f9
commit daed410d10

@ -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 (
<div>
<h1 className="font-bold text-xl">Minecraft Utilities - Hello!</h1>
<p>We provide a convenient wrapper for the Minecraft APIs, simplifying their usage for developers.</p>
<div className="text-center flex flex-col justify-center">
<h1 className="text-4xl">Minecraft Utilities</h1>
<p className="text-lg">
We provide a convenient API for Minecraft, simplifying the usage for players and developers.
</p>
<div className="mt-4 flex flex-row gap-2 justify-center">
{buttons.map((button, index) => {
return (
<Link
key={index}
href={button.url}
className="w-fit p-2 rounded-lg hover:text-primary transition-all cursor-pointer bg-secondary"
>
<p>{button.title}</p>
</Link>
);
})}
</div>
</div>
);
}