diff --git a/app/play/[level]/[attempt]/page.tsx b/app/play/[level]/[attempt]/page.tsx index 0e05d4d..9a82040 100644 --- a/app/play/[level]/[attempt]/page.tsx +++ b/app/play/[level]/[attempt]/page.tsx @@ -22,9 +22,26 @@ export default function PlayLevelAttemptPage({ }); if (attempt === undefined) { - return

Loading...

; + return ( +
+
+ +
+

Night #{level}

+

Attempt #{attemptNum}

+ Loading... +
+ ); } else if (attempt === null) { - return

Attempt Not Found

; + return ( +
+ Attempt Not Found +
+ ); } return (