We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f7bdb9 commit 23f55f9Copy full SHA for 23f55f9
src/components/UpcomingEventCard/index.js
@@ -29,8 +29,8 @@ const UpcomingEvents = ({ data }) => {
29
<SwiperSlide key={item.id}>
30
<div className="blog-slider_item swiper-slide">
31
<div className="blog-slider_img">
32
- <Link to={`/community/events/${slugify(item.frontmatter.title)}`}>
33
- <Image {...item.frontmatter.thumbnail} alt={item.frontmatter.title} />
+ <Link to={`/community/events/${slugify(item.frontmatter.title)}`} aria-label={`View event: ${item.frontmatter.title}`}>
+ <Image {...item.frontmatter.thumbnail} alt={item.frontmatter.title} width={480} height={270} />
34
</Link>
35
</div>
36
<div className="blog-slider_content">
0 commit comments