From b889f3fd10702f3714f389506f81af87d76249c4 Mon Sep 17 00:00:00 2001 From: jessy-david-dev Date: Mon, 13 Apr 2026 17:17:47 +0200 Subject: [PATCH] ui(solo): align topbar design with multiplayer game screen --- app/components/SoloScreen.tsx | 84 ++++++++++++++++------------------- 1 file changed, 38 insertions(+), 46 deletions(-) diff --git a/app/components/SoloScreen.tsx b/app/components/SoloScreen.tsx index 8b3944c..87d4fcf 100644 --- a/app/components/SoloScreen.tsx +++ b/app/components/SoloScreen.tsx @@ -147,6 +147,44 @@ export function SoloScreen({ // Playing return (
+ {/* Topbar */} +
+ {/* Cible centrée */} +
+ + {puzzle?.target} + +
+ {/* Breadcrumbs + stats */} +
+
+ +
+
+
+ {elapsedDisplay} + {clicks} clics +
+ {canGoBack && ( + + )} + +
+
+
+ + {/* Content */}
{title &&

{title}

} @@ -175,52 +213,6 @@ export function SoloScreen({ )}
- - {/* Bottom bar */} -
-
- - Trouver - - - {puzzle?.target} - - -
-
-
- - Temps - - - {elapsedDisplay} - -
-
- - Clics - - - {clicks} - -
- {canGoBack && ( - - )} - -
-
); }