Skip to content

Commit

Permalink
Bump version: 0.4.20 → 0.4.21
Browse files Browse the repository at this point in the history
  • Loading branch information
kilemensi committed May 6, 2024
1 parent 0006826 commit 3847cc8
Show file tree
Hide file tree
Showing 7 changed files with 2,670 additions and 3,114 deletions.
2 changes: 1 addition & 1 deletion contrib/dokku/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM codeforafrica/sensors-africa-ui:0.4.20
FROM codeforafrica/sensors-africa-ui:0.4.21
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sensors.africa",
"description": "sensors.AFRICA",
"version": "0.4.20",
"version": "0.4.21",
"private": true,
"main": "index.js",
"homepage": "https://sensors.africa/",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ function SocialMediaButtons({ city }) {
className={classes.buttonLink}
>
<a
aria-label="Share on Twitter"
href="https://twitter.com/sensorsAFRICA/"
target="_blank"
rel="noopener noreferrer"
Expand All @@ -46,6 +47,7 @@ function SocialMediaButtons({ city }) {
</Grid>
<Grid item className={classes.facebook}>
<a
aria-label="Share on Facebook"
href="https://www.facebook.com/CodeForAfrica/"
target="_blank"
rel="noopener noreferrer"
Expand All @@ -60,6 +62,7 @@ function SocialMediaButtons({ city }) {
</Grid>
<Grid item className={classes.instagram}>
<a
aria-label="Share on Instagram"
href="https://www.instagram.com/sensorsAFRICA/"
target="_blank"
rel="noopener noreferrer"
Expand All @@ -74,6 +77,7 @@ function SocialMediaButtons({ city }) {
</Grid>
<Grid item className={classes.medium}>
<a
aria-label="Share on Medium"
href="https://medium.com/code-for-africa/tagged/innovateafrica"
target="_blank"
rel="noopener noreferrer"
Expand Down
1 change: 1 addition & 0 deletions src/components/Hambuger/MenuButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ function MenuButton({ color, onClick, open, ...props }) {
};
return (
<div
aria-label="Menu"
className={classes.container}
onClick={onClick}
onKeyDown={onClick}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ function NeedlePointer({ hidden, measurement }) {
measurement > 25 && measurement < 55
? "middle"
: measurement > 40
? "start"
: "end"
? "start"
: "end"
}
>
<tspan className={classes.gaugeBigText}>
Expand Down
5 changes: 5 additions & 0 deletions src/components/SocialMedia.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ function SocialMedia({ color, ...props }) {
>
<Grid item>
<a
aria-label="Twitter"
href="https://twitter.com/sensorsAFRICA/"
className={classes.links}
target="_blank"
Expand All @@ -55,6 +56,7 @@ function SocialMedia({ color, ...props }) {
</Grid>
<Grid item>
<a
aria-label="Facebook"
href="https://www.facebook.com/CodeForAfrica/"
className={classes.links}
target="_blank"
Expand All @@ -71,6 +73,7 @@ function SocialMedia({ color, ...props }) {
</Grid>
<Grid item>
<a
aria-label="Instagram"
href="https://www.instagram.com/sensorsAFRICA/"
className={classes.links}
target="_blank"
Expand All @@ -85,6 +88,7 @@ function SocialMedia({ color, ...props }) {
/>
</a>
<a
aria-label="Medium"
href="https://medium.com/@sensors.AFRICA"
className={classes.links}
target="_blank"
Expand All @@ -101,6 +105,7 @@ function SocialMedia({ color, ...props }) {
</Grid>
<Grid item>
<a
aria-label="GitHub"
href="https://github.com/CodeForAfrica/sensors.AFRICA"
className={classes.links}
target="_blank"
Expand Down
Loading

0 comments on commit 3847cc8

Please sign in to comment.