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

Communities page SEO #312

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
4 changes: 2 additions & 2 deletions src/sections/community/Community.Suborgs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ const BitByteDescription: React.FC<{ isMobile: boolean }> = ({ isMobile }) => (
const OutreachTitle: React.FC<{ isMobile: boolean, open?:boolean, setSelected: (org: string) => void; glowClassName: string}> = ({ isMobile, open, setSelected, glowClassName }) => (
<CommunitiesTitle
org="Reach"
color="green"
color="outreach-green"
website="https://outreach-website.vercel.app/"
logo={OutreachLogo.src}
isMobile={isMobile}
Expand All @@ -469,7 +469,7 @@ const OutreachTitle: React.FC<{ isMobile: boolean, open?:boolean, setSelected: (
const OutreachDescription: React.FC<{ isMobile: boolean }> = ({ isMobile }) => (
<CommunityComponent
org="Reach"
color="green"
color="outreach-green"
isMobile={isMobile}
links={[]}
description={
Expand Down
8 changes: 4 additions & 4 deletions src/sections/community/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -472,11 +472,11 @@
.pinkbg {
background-color: colors.$light-pink;
}
.green {
color: colors.$green;
.outreach-green {
color: colors.$outreach-green;
}
.greenbg {
background-color: colors.$green; // TOFIX: change to light-green
.outreach-greenbg {
background-color: colors.$light-outreach-green; // TOFIX: change to light-green
WishingWell13 marked this conversation as resolved.
Show resolved Hide resolved
}
.blue {
color: colors.$blue;
Expand Down
2 changes: 2 additions & 0 deletions src/styles/colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ $blue: #62b0ff;
$turquoise: #51c0c0;
$purple: #816dff;
$pink: #e981a0;
$outreach-green: rgb(70, 155, 104);

$white: #ffffff;
$grey: #f8f8f8;
Expand All @@ -21,3 +22,4 @@ $light-purple: rgba(129, 109, 255, 0.2);
$light-orange: rgba(249, 168, 87, 0.2);
$link-blue: #0659bc;
$light-pink: rgba(233, 129, 160, 0.2);
$light-outreach-green: rgba(70, 155, 104, 0.2);