Skip to content

Commit

Permalink
fix: community form link
Browse files Browse the repository at this point in the history
  • Loading branch information
Holybasil committed Oct 24, 2024
1 parent 9fd724e commit 0ee0ae3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
17 changes: 8 additions & 9 deletions src/constants/community.ts
Original file line number Diff line number Diff line change
@@ -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 = [
Expand All @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions src/pages/community/Join/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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%",
Expand All @@ -22,7 +22,7 @@ const useStyles = makeStyles()(theme => ({
},
},
large: {
gridColumn: "span 2",
gridColumn: "span 3",
[theme.breakpoints.down("md")]: {
gridColumn: "span 1",
},
Expand Down

0 comments on commit 0ee0ae3

Please sign in to comment.