Skip to content

Commit 6b8afb7

Browse files
committed
Fix accessibility issue with emojis
1 parent e2b706c commit 6b8afb7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/pages/about.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { OutboundLink } from 'gatsby-plugin-google-analytics';
77
export default function About() {
88
return (
99
<Layout>
10-
<img src={banner} />
10+
<img src={banner} alt="Me standing on stage giving a talk" />
1111
<h2 style={{ fontSize: "2em" }}>About Me</h2>
1212

1313
<section>

src/pages/talks.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default function Talks() {
4343
<li>Workshops</li>
4444
<li>Mobbing, pairing, one-on-one</li>
4545
<li>Customized</li>
46-
<li>💻💥Live coding</li>
46+
<li><span role='img' aria-label='Laptop'>💻</span><span role='img' aria-label='Explosion'>💥</span> Live coding</li>
4747
</ul>
4848
</section>
4949

@@ -78,7 +78,7 @@ export default function Talks() {
7878
<h3>Contact</h3>
7979

8080
<p>
81-
✉️ kyleetilley[at]gmail.com
81+
<span role='img' aria-label='Email'>✉️</span> kyleetilley[at]gmail.com
8282
</p>
8383
</section>
8484
</Layout>

0 commit comments

Comments
 (0)