aboutsummaryrefslogtreecommitdiff
path: root/src/components/Footer.tsx
diff options
context:
space:
mode:
authorschererleander <leander@schererleander.de>2025-06-04 01:24:36 +0200
committerschererleander <leander@schererleander.de>2025-06-04 01:24:36 +0200
commit6fb8b3f0c2cbe1c158713f2bf1f3c5e848eaf2c2 (patch)
treec20936d42caca075ffd2aa0aa7b84abb9bcde510 /src/components/Footer.tsx
parentf9295a3f3fb36b3fc04e1616c9344fa81a4fa0e3 (diff)
add accessible names to buttons and links
Diffstat (limited to 'src/components/Footer.tsx')
-rw-r--r--src/components/Footer.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx
index 13ba637..2caf39d 100644
--- a/src/components/Footer.tsx
+++ b/src/components/Footer.tsx
@@ -6,11 +6,11 @@ export default function Footer() {
return (
<footer className="flex flex-col items-center gap-2 py-4">
<div className="flex gap-6">
- <a href="https://github.com/schererleander" target="_blank" rel="noopener noreferrer">
+ <a href="https://github.com/schererleander" target="_blank" rel="noopener noreferrer" aria-label="Leander Scherer's GitHub">
<GitHubIcon />
</a>
- <a href="mailto:leander@schererleander.de">
+ <a href="mailto:leander@schererleander.de" aria-label="Send email to Leander Scherer">
<MailIcon />
</a>
</div>