add server page and update player page
Some checks failed
Deploy App / docker (ubuntu-latest) (push) Failing after 47s
Some checks failed
Deploy App / docker (ubuntu-latest) (push) Failing after 47s
This commit is contained in:
@ -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
13
src/app/server/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user