Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update copy and adjust menu #1320

Merged
merged 1 commit into from
Oct 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions src/components/Header/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ const mainnetNavigations = [
icon: StatusSvg,
},
{
label: "Are you a developer?",
label: "Learn, build and innovate",
text: "Level Up",
key: "lelvel-up",
href: "https://levelupweb3.xyz",
Expand Down Expand Up @@ -247,12 +247,6 @@ const mainnetNavigations = [
href: "/brand-kit",
rootKey: "resources",
},
{
label: "Forum",
key: "forum",
href: "https://community.scroll.io",
isExternal: true,
},
{
label: "Security",
key: "security",
Expand Down
15 changes: 8 additions & 7 deletions src/constants/community.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
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/"
Expand All @@ -13,12 +14,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: "Community Forum",
// content: "Discuss and propose changes to Scroll",
// },
{
icon: ContributeIcon,
href: CONTRIBUTE_TO_SCROLL_LINK,
Expand Down
2 changes: 1 addition & 1 deletion src/pages/community/Join/CardLarge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const ContributeCard = props => {
cursor: "inherit",
}}
>
Are you a developer?
Learn, build and innovate
</Typography>
<Typography
sx={{
Expand Down
2 changes: 1 addition & 1 deletion 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(3, 1fr)",
gridTemplateColumns: "repeat(2, 1fr)",
gridGap: "3rem",
[theme.breakpoints.down("md")]: {
gridTemplateColumns: "100%",
Expand Down