Skip to content

Commit ea3ad09

Browse files
authored
Merge pull request #11 from pintoderian/main
Accessibility adjustment in pagespeed
2 parents 7e0a083 + 62d19f8 commit ea3ad09

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/app/components/header/_children/btn-language.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,12 @@ const BtnLanguage = () => {
1818
};
1919

2020
return (
21-
<Button type="button" variant="ghost" onClick={handleLanguage}>
21+
<Button
22+
aria-label="Toggle Language"
23+
type="button"
24+
variant="ghost"
25+
onClick={handleLanguage}
26+
>
2227
{language === "ES" ? <IconEC /> : <IconEEUU />}
2328
</Button>
2429
);

src/app/components/projects.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const TAGS = {
3737
},
3838
ASTRO: {
3939
name: "Astro",
40-
class: "bg-orange-600 text-white",
40+
class: "bg-orange-700 text-white",
4141
icon: IconRocket,
4242
iconClass: "text-white"
4343
},

0 commit comments

Comments
 (0)