From 207c96d357958318cb233e473621fa08013c0582 Mon Sep 17 00:00:00 2001 From: martin-mfg <2026226+martin-mfg@users.noreply.github.com> Date: Fri, 14 Nov 2025 13:57:10 +0100 Subject: [PATCH] step 1: fix links, no icon on 3rd button --- .../frontend/src/pages/Home/stages/Login.js | 44 ++++++++++--------- 1 file changed, 24 insertions(+), 20 deletions(-) diff --git a/frontend/frontend/src/pages/Home/stages/Login.js b/frontend/frontend/src/pages/Home/stages/Login.js index 62b64cac..ba23a206 100644 --- a/frontend/frontend/src/pages/Home/stages/Login.js +++ b/frontend/frontend/src/pages/Home/stages/Login.js @@ -49,26 +49,30 @@ const LoginStage = ({ setCurrItem }) => { 'lg:h-auto', )} > - {items.map((item, index) => ( - - {index > 0 &&
} -
- {item.url && ``} - - {item.url && ''} -
{item.description}
-
- - ))} + {items.map((item, index) => { + const button = ( + + ); + + return ( + + {index > 0 &&
} +
+ {item.url ? {button} : button} +
{item.description}
+
+ + ); + })}