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

feat: improved website accessibility, best practices, seo score to 100% #1421

Merged
merged 2 commits into from
Jan 15, 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
4 changes: 4 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -356,6 +356,10 @@ small {
}
}

.app-footer-text {
color: var(--color-neutral-80);
}

/* Buttons */
.btn-default {
border: solid 1px var(--color-neutral-60);
Expand Down
4 changes: 2 additions & 2 deletions src/common/defaultBanner/DefaultBanner.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ const DefaultBanner = () => {
</a>
</div>
<div className="body-desc">
Check out our bouquet of events{' '}
Check out our bouquet of{' '}
<Link className="home-anchor" target="_blank" to="https://hustles.reactplay.io/">
<span className="text text-secondary">here</span>
<span className="text text-secondary">events</span>
</Link>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/common/footer/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const Footer = () => {
<footer className="app-footer text-center">
<hr className="separater" />
<div className="flex justify-center items-center py-2">
<p>
<p className="app-footer-text">
ReactPlay - The MIT License (MIT) Copyright &copy;
{new Date().getFullYear()} . Powered by{' '}
<Link className="text-link-default" to="/tech-stacks">
Expand Down
7 changes: 6 additions & 1 deletion src/common/home/HomeIdeas.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ const HomeIdeas = () => {
<div className="home-ideas">
<FaLightbulb className="icon" color="var(--color-brand-primary)" size="48px" />
<p className="ideas-lead">Not sure how to get started?</p>
<p className="ideas-title">We have got lot of ideas</p>
<p className="title-primary">
We have got lot of{' '}
<strong>
<span>ideas</span>
</strong>
</p>
<Link className="home-anchor" to="/ideas">
<span className="text">Get started with some ideas</span>
</Link>
Expand Down
1 change: 1 addition & 0 deletions src/common/home/Sponsors.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ const Sponsors = () => {
</a>
))} */}
<a
aria-label="Sponsor"
className="backers-cta"
href="https://github.com/sponsors/reactplay"
rel="noreferrer"
Expand Down