aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/GolfPlayApps/GolfPlayAppWaiting.tsx
blob: 5c4e94f3139ce9cac592ccff1420d8f8e1e1f1a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import type { PlayerProfile } from "../../types/PlayerProfile";
import PlayerNameAndIcon from "../PlayerNameAndIcon";

type Props = {
  gameDisplayName: string;
  playerProfile: PlayerProfile;
};

export default function GolfPlayAppWaiting({
  gameDisplayName,
  playerProfile,
}: Props) {
  return (
    <div className="min-h-screen bg-gray-100 flex flex-col font-bold text-center">
      <div className="text-white bg-brand-600 p-10">
        <div className="text-4xl">{gameDisplayName}</div>
      </div>
      <div className="grow grid mx-auto text-black">
        <PlayerNameAndIcon profile={playerProfile} />
      </div>
    </div>
  );
}