From c39dddf1db5cef0ca7805314572ba6462179a325 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Thu, 15 Jan 2026 22:23:57 +0100 Subject: [PATCH] Clean /organization --- web/components/buttons/general-button.tsx | 29 ++++++++++++++--------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/web/components/buttons/general-button.tsx b/web/components/buttons/general-button.tsx index 410f3c7e..c1d9137b 100644 --- a/web/components/buttons/general-button.tsx +++ b/web/components/buttons/general-button.tsx @@ -4,15 +4,22 @@ export const GeneralButton = (props: { url: string content: string }) => { - const {url, content} = props - return
- - {content} - -
; + const {url, content} = props; + + return ( +
+ +
+ {content} +
+ +
+ ); } \ No newline at end of file