add motd to the server page
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 56s

This commit is contained in:
Lee
2024-04-16 21:18:08 +01:00
parent 8ffd865c63
commit f00d6d8ba4
17 changed files with 97 additions and 38 deletions

View File

@ -1,6 +1,6 @@
import { Card } from "@/app/components/card";
import { NotFound } from "@/app/components/not-found";
import { LookupPlayer } from "@/app/components/player/lookup-player";
import { Card } from "@/app/components/ui/card";
import { generateEmbed } from "@/common/embed";
import { getPlayer } from "mcutils-library";
import { Player } from "mcutils-library/dist/types/player/player";
@ -42,7 +42,7 @@ async function getData(id: string): Promise<Player | null> {
}
}
export default async function Page({ params }: Params) {
export default async function Page({ params }: Params): Promise<JSX.Element> {
const player = await getData(params.id);
return (
@ -57,7 +57,7 @@ export default async function Page({ params }: Params) {
<Card>
{player == null && <NotFound message="Invalid UUID / Username" />}
{player != null && (
<div className="flex gap-2 flex-col md:flex-row">
<div className="flex gap-4 flex-col md:flex-row">
<div className="flex justify-center md:justify-start">
<Image
className="w-[96px] h-[96px]"