16 lines
382 B
TypeScript
16 lines
382 B
TypeScript
import PlayerSearch from '@/components/PlayerSearch';
|
|
|
|
export default function PlayersPage() {
|
|
return (
|
|
<div className="space-y-6">
|
|
<div>
|
|
<h1 className="text-2xl text-ink mb-1">Players</h1>
|
|
<p className="text-sm text-ink-muted">
|
|
Search by current or previous name, or SteamID.
|
|
</p>
|
|
</div>
|
|
<PlayerSearch />
|
|
</div>
|
|
);
|
|
}
|