-
-
Notifications
You must be signed in to change notification settings - Fork 33
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
added qacc linkson the footer for SEO #4854
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -142,6 +142,22 @@ const Footer = () => { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</LinkItem> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</a> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</LinkColumn> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<LinkColumn> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<a href={links.QACC} target='_blank'> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<LinkItem color={textColor}> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{formatMessage({ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
id: 'component.title.qacc', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
})} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</LinkItem> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</a> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<a href={links.QACC_NEWS} target='_blank'> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<LinkItem color={textColor}> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{formatMessage({ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
id: 'component.title.qacc_news', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
})} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</LinkItem> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</a> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</LinkColumn> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+145
to
+160
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add security attributes to external links. The external links are missing the Apply this diff to fix the security vulnerability: - <a href={links.QACC} target='_blank'>
+ <a href={links.QACC} target='_blank' rel="noreferrer noopener">
- <a href={links.QACC_NEWS} target='_blank'>
+ <a href={links.QACC_NEWS} target='_blank' rel="noreferrer noopener"> 📝 Committable suggestion
Suggested change
🛠️ Refactor suggestion Enhance SEO with additional link attributes. While the QACC links have been added, their SEO value could be improved by adding descriptive attributes. Consider adding <a href={links.QACC}
target='_blank'
+ title="QACC - Quadratic Autonomous Credit Consensus"
+ aria-label="Visit QACC platform"
rel="noreferrer noopener">
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</LeftContainer> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<RightContainer color={textColor}> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<SocialContainer> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -225,7 +241,7 @@ const LeftContainer = styled(Flex)` | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
gap: 0; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
${mediaQueries.laptopL} { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
gap: 0 72px; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
gap: 0 0px; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
`; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Translate QACC-related strings to Spanish
The new QACC strings should be properly translated to Spanish for consistency:
Also note that "Q/acc" should be "QACC" to match the casing used elsewhere.
📝 Committable suggestion