add server page and update player page
Some checks failed
Deploy App / docker (ubuntu-latest) (push) Failing after 47s

This commit is contained in:
Lee
2024-04-14 21:56:07 +01:00
parent 094a6c697e
commit 2597c51863
9 changed files with 118 additions and 34 deletions

View File

@ -4,7 +4,7 @@ export default function Player() {
return (
<div className="h-full flex flex-col items-center">
<div className="mb-4 text-center">
<h1 className="text-xl">Search for a Player</h1>
<h1 className="text-xl">Lookup a Player</h1>
<p>You can enter a players uuid or username to get information about the player.</p>
</div>
<PlayerSearch />

13
src/app/server/page.tsx Normal file
View File

@ -0,0 +1,13 @@
import ServerSearch from "@/components/server-search";
export default function Player() {
return (
<div className="h-full flex flex-col items-center">
<div className="mb-4 text-center">
<h1 className="text-xl">Lookup a Server</h1>
<p>You can enter a server ip or domain to get information about the server.</p>
</div>
<ServerSearch />
</div>
);
}