-
-
-
-
-
-
-
-
-
-
-
-
+ {createFooterButton('X page', TWITTER_LINK, XIcon)}
+ {createFooterButton('Discourse forum', FORUM_LINK, DiscourseIcon)}
+ {createFooterButton('Discord server', DISCORD_LINK, DiscordIcon)}
+ {createFooterButton('Youtube channel', YOUTUBE_LINK, YoutubeIcon)}
+ {createFooterButton('Mirror blog', MIRROR_LINK, MirrorIcon)}
+ {createFooterButton('Github organization', GITHUB_LINK, GithubIcon)}
diff --git a/src/components/common/Footer/styles.module.css b/src/components/common/Footer/styles.module.css
index bfb65d470..f0b1b0672 100644
--- a/src/components/common/Footer/styles.module.css
+++ b/src/components/common/Footer/styles.module.css
@@ -38,9 +38,15 @@
.socials {
display: flex;
+ flex-wrap: wrap;
gap: 24px;
}
+.socials svg {
+ width: 28px;
+ height: 28px;
+}
+
.logo {
width: 150px;
height: auto;
diff --git a/src/config/constants.ts b/src/config/constants.ts
index a81360e76..eae2f9dae 100644
--- a/src/config/constants.ts
+++ b/src/config/constants.ts
@@ -14,12 +14,18 @@ export const CORE_LINK = 'https://core.safe.global'
export const PRESS_LINK = 'https://press.safe.global'
export const HELP_LINK = 'https://help.safe.global'
export const DOCS_LINK = 'https://docs.safe.global'
+export const FORUM_LINK = 'https://forum.safe.global'
export const IOS_LINK = 'https://apps.apple.com/app/id1515759131'
export const GPLAY_LINK = 'https://play.google.com/store/apps/details?id=io.gnosis.safe'
export const LICENSES_LINK = 'https://app.safe.global/licenses'
export const GOVERNANCE_LINK = 'https://gov.safe.global'
export const ECOSYSTEM_LINK = 'https://ecosystem.safe.global'
export const GRANTS_LINK = 'https://grants.safe.global'
+export const TWITTER_LINK = 'https://x.com/safe'
+export const DISCORD_LINK = 'https://chat.safe.global'
+export const YOUTUBE_LINK = 'https://www.youtube.com/@safeglobal'
+export const MIRROR_LINK = 'https://safe.mirror.xyz'
+export const GITHUB_LINK = 'https://github.com/safe-global'
export const PROTOCOL_KIT_LINK = 'https://docs.safe.global/safe-core-aa-sdk/protocol-kit'
export const AUTH_KIT_LINK = 'https://docs.safe.global/safe-core-aa-sdk/auth-kit'