From baeb2a33fe9b3cbe0e9a759fccce216df4cd1d0e Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Tue, 14 Oct 2025 18:57:52 +0200 Subject: [PATCH] Simplify and make grid for social --- web/pages/social.tsx | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/web/pages/social.tsx b/web/pages/social.tsx index 20906488..c5e1ce83 100644 --- a/web/pages/social.tsx +++ b/web/pages/social.tsx @@ -1,26 +1,27 @@ import {LovePage} from 'web/components/love-page' import {discordLink, githubRepo, redditLink, stoatLink, supportEmail, xLink} from "common/constants"; import {GeneralButton} from "web/components/buttons/general-button"; +import clsx from "clsx"; +import {Col} from "web/components/layout/col"; export default function Social() { return ( -
-
-
-
-

Socials

- - - - - - -
-
-
-
+

Socials

+ + + + + + + +
) }