aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/GolfWatchApps/GolfWatchAppConnecting.tsx
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-08-01 02:02:04 +0900
committernsfisis <nsfisis@gmail.com>2024-08-01 02:29:31 +0900
commit1be6007f81488d0f186b44994fe8ee23385059a1 (patch)
tree53011badc4b62c63da407a9b9213af242ed5cf4b /frontend/app/components/GolfWatchApps/GolfWatchAppConnecting.tsx
parent222ed4e77c3564c95450361fdeca40a733ce65c9 (diff)
downloadphperkaigi-2025-albatross-1be6007f81488d0f186b44994fe8ee23385059a1.tar.gz
phperkaigi-2025-albatross-1be6007f81488d0f186b44994fe8ee23385059a1.tar.zst
phperkaigi-2025-albatross-1be6007f81488d0f186b44994fe8ee23385059a1.zip
feat(frontend): add minimal styling to game pages
Diffstat (limited to 'frontend/app/components/GolfWatchApps/GolfWatchAppConnecting.tsx')
-rw-r--r--frontend/app/components/GolfWatchApps/GolfWatchAppConnecting.tsx10
1 files changed, 9 insertions, 1 deletions
diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppConnecting.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppConnecting.tsx
index 07e359f..b91339a 100644
--- a/frontend/app/components/GolfWatchApps/GolfWatchAppConnecting.tsx
+++ b/frontend/app/components/GolfWatchApps/GolfWatchAppConnecting.tsx
@@ -1,3 +1,11 @@
export default function GolfWatchAppConnecting() {
- return <div>Connecting...</div>;
+ 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">
+ Connecting...
+ </h1>
+ </div>
+ </div>
+ );
}