aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/GolfWatchApps/GolfWatchAppWaiting.tsx
blob: 17ef2b94e2f96610a9a22eef65b9ac6d378987a1 (plain)
1
2
3
4
5
6
7
8
9
export default function GolfWatchAppWaiting() {
	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">Waiting...</h1>
			</div>
		</div>
	);
}