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