diff --git a/src/constants/community.ts b/src/constants/community.ts index 0288f738..5cdf5138 100644 --- a/src/constants/community.ts +++ b/src/constants/community.ts @@ -1,10 +1,9 @@ import { ReactComponent as ContributeIcon } from "@/assets/svgs/community/contribute.svg" import { ReactComponent as DiscordIcon } from "@/assets/svgs/community/discord.svg" - -// import { ReactComponent as ForumIcon } from "@/assets/svgs/community/forum.svg" +import { ReactComponent as ForumIcon } from "@/assets/svgs/community/forum.svg" export const DISCORD_LINK = "https://discord.gg/scroll" -export const COMMUNITY_FORUM_LINK = "https://community.scroll.io/" +export const COMMUNITY_FORUM_LINK = "https://gov.scroll.io/forum" export const CONTRIBUTE_TO_SCROLL_LINK = "https://github.com/scroll-tech/contribute-to-scroll" export const COMMUNITY_EXPLORER_LIST = [ @@ -14,12 +13,12 @@ export const COMMUNITY_EXPLORER_LIST = [ title: "Join our Discord", content: "Connect with other Scroll developers and users", }, - // { - // icon: ForumIcon, - // href: COMMUNITY_FORUM_LINK, - // title: "Community Forum", - // content: "Discuss and propose changes to Scroll", - // }, + { + icon: ForumIcon, + href: COMMUNITY_FORUM_LINK, + title: "Governance Forum", + content: "Discuss and propose changes to Scroll", + }, { icon: ContributeIcon, href: CONTRIBUTE_TO_SCROLL_LINK, diff --git a/src/pages/community/Join/index.tsx b/src/pages/community/Join/index.tsx index a0ad04f3..e444cb94 100644 --- a/src/pages/community/Join/index.tsx +++ b/src/pages/community/Join/index.tsx @@ -13,7 +13,7 @@ const useStyles = makeStyles()(theme => ({ flex: { marginTop: "4.8rem", display: "grid", - gridTemplateColumns: "repeat(2, 1fr)", + gridTemplateColumns: "repeat(3, 1fr)", gridGap: "3rem", [theme.breakpoints.down("md")]: { gridTemplateColumns: "100%", @@ -22,7 +22,7 @@ const useStyles = makeStyles()(theme => ({ }, }, large: { - gridColumn: "span 2", + gridColumn: "span 3", [theme.breakpoints.down("md")]: { gridColumn: "span 1", },