Frontend/src/app/(pages)/page.tsx

97 lines
2.5 KiB
TypeScript
Raw Normal View History

import { Stats } from "@/app/components/stats";
2024-04-14 19:01:57 +01:00
import Link from "next/link";
import { ReactElement } from "react";
2024-04-17 18:08:13 +01:00
import { Button } from "../components/ui/button";
2024-04-18 01:37:59 +01:00
import { Separator } from "../components/ui/separator";
import { Tooltip, TooltipContent, TooltipTrigger } from "../components/ui/tooltip";
2024-04-14 19:01:57 +01:00
type Button = {
2024-04-18 07:06:16 +01:00
/**
* The title of the button.
*/
2024-04-14 19:01:57 +01:00
title: string;
2024-04-18 07:06:16 +01:00
/**
* The tooltip to display for this statistic.
*/
2024-04-17 18:08:13 +01:00
tooltip: string;
2024-04-18 07:06:16 +01:00
/**
* The URL to go to.
*/
2024-04-14 19:01:57 +01:00
url: string;
2024-04-18 07:06:16 +01:00
/**
* Whether clicking the button will
* open the link in a new tab.
*/
2024-04-17 18:08:13 +01:00
openInNewTab?: boolean;
2024-04-14 19:01:57 +01:00
};
const buttons: Button[] = [
{
title: "Get Started",
2024-04-18 18:13:57 +01:00
tooltip: "Click to view get started!",
url: "/player",
},
{
title: "Postman Collection",
tooltip: "Click to view the Postman Collection",
url: "https://www.postman.com/imfascinated/workspace/minecraft-utilities",
openInNewTab: true,
},
2024-04-17 18:08:13 +01:00
{
title: "Documentation",
tooltip: "Click to open the documentation",
url: "https://api.mcutils.xyz/swagger-ui.html",
openInNewTab: true,
},
2024-04-14 19:01:57 +01:00
];
2024-04-18 01:21:38 +01:00
export default function Home(): ReactElement {
2024-04-14 17:45:04 +01:00
return (
2024-04-18 02:54:16 +01:00
<div className="text-center flex flex-col gap-4">
<div className="p-4">
<div>
<h1 className="text-4xl mb-2">Minecraft Utilities</h1>
<div className="text-lg">
<p>
Minecraft Utilities offers you many endpoints to get information about a minecraft server or a player.
</p>
<p>We offer you a simple and easy to use API.</p>
</div>
2024-04-18 01:37:59 +01:00
</div>
2024-04-14 19:01:57 +01:00
2024-04-18 02:54:16 +01:00
<div className="flex flex-row gap-2 justify-center mt-4">
{buttons.map((button, index) => {
return (
<Tooltip key={index}>
<TooltipTrigger asChild>
<Button key={index}>
<Link href={button.url} target={button.openInNewTab ? "_blank" : ""}>
<p>{button.title}</p>
</Link>
</Button>
</TooltipTrigger>
<TooltipContent>
<p>{button.tooltip}</p>
</TooltipContent>
</Tooltip>
);
})}
</div>
2024-04-14 19:01:57 +01:00
</div>
2024-04-18 01:37:59 +01:00
2024-04-18 02:54:16 +01:00
<Separator />
2024-04-18 01:37:59 +01:00
2024-04-18 03:24:16 +01:00
<div className="flex flex-col gap-4 items-center pt-4">
2024-04-18 01:37:59 +01:00
<div className="text-center">
<p className="font-semibold text-xl">API Statistics</p>
<p>View the statistics for the API in real-time!</p>
</div>
<Stats />
</div>
2024-04-14 18:46:37 +01:00
</div>
2024-04-14 17:45:04 +01:00
);
}