aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/GolfPlayApps/GolfPlayAppStarting.tsx
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-08-19 05:21:58 +0900
committernsfisis <nsfisis@gmail.com>2024-08-19 05:35:24 +0900
commit19fad1b969ac9b6c50b024a2c710e8f4fe792eb0 (patch)
tree3fe237c1bee168eec088e125ba3877249aa09510 /frontend/app/components/GolfPlayApps/GolfPlayAppStarting.tsx
parent6031c81f5394acf315b277302a7fd18ea288b506 (diff)
downloadphperkaigi-2025-albatross-19fad1b969ac9b6c50b024a2c710e8f4fe792eb0.tar.gz
phperkaigi-2025-albatross-19fad1b969ac9b6c50b024a2c710e8f4fe792eb0.tar.zst
phperkaigi-2025-albatross-19fad1b969ac9b6c50b024a2c710e8f4fe792eb0.zip
feat(frontend): improve play/watch pages styling
Diffstat (limited to 'frontend/app/components/GolfPlayApps/GolfPlayAppStarting.tsx')
-rw-r--r--frontend/app/components/GolfPlayApps/GolfPlayAppStarting.tsx15
1 files changed, 9 insertions, 6 deletions
diff --git a/frontend/app/components/GolfPlayApps/GolfPlayAppStarting.tsx b/frontend/app/components/GolfPlayApps/GolfPlayAppStarting.tsx
index 18e9ffe..06e3825 100644
--- a/frontend/app/components/GolfPlayApps/GolfPlayAppStarting.tsx
+++ b/frontend/app/components/GolfPlayApps/GolfPlayAppStarting.tsx
@@ -1,16 +1,19 @@
type Props = {
+ gameDisplayName: string;
leftTimeSeconds: number;
};
export default function GolfPlayAppStarting({
- leftTimeSeconds: timeLeft,
+ gameDisplayName,
+ leftTimeSeconds,
}: Props) {
return (
- <div className="min-h-screen bg-gray-100 flex items-center justify-center">
- <div className="text-center">
- <h1 className="text-4xl font-bold text-black-600 mb-4">
- Starting... ({timeLeft} s)
- </h1>
+ <div className="min-h-screen bg-gray-100 flex flex-col">
+ <div className="text-white bg-iosdc-japan p-10 text-center">
+ <div className="text-4xl text-bold">{gameDisplayName}</div>
+ </div>
+ <div className="text-center text-black font-black text-10xl animate-ping">
+ {leftTimeSeconds}
</div>
</div>
);