add basic player page
Some checks failed
Deploy App / docker (ubuntu-latest) (push) Has been cancelled
Some checks failed
Deploy App / docker (ubuntu-latest) (push) Has been cancelled
This commit is contained in:
13
src/app/player/page.tsx
Normal file
13
src/app/player/page.tsx
Normal file
@ -0,0 +1,13 @@
|
||||
import PlayerSearch from "@/components/player-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">Search for a Player</h1>
|
||||
<p>You can enter a players uuid or username to get information about the player.</p>
|
||||
</div>
|
||||
<PlayerSearch />
|
||||
</div>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user