kmesh-net/website

[Bug][Accessibility] Missing `alt` attribute for Kmesh logo in About section

開放

#327 建立於 2026年7月5日

 (2 則留言) (0 個反應) (1 位負責人)JavaScript (71 個分叉)auto 404
good first issue

倉庫指標

星標
 (11 顆星)
PR 合併指標
 (PR 指標待抓取)

描述

Task Description

The Kmesh logo image in the About section (src/components/About/index.js) is missing an alt attribute.

This is an accessibility issue because screen readers cannot provide a meaningful description of the image. It is also a minor SEO improvement.

Current Code

<img className="portrait" src="img/Kmesh-icon.png"></img>

Expected Behavior

The image should include a descriptive alt attribute so that assistive technologies can correctly identify it.

Proposed Solution

Update the image element to include an appropriate alt attribute and use the self-closing JSX syntax.

Example:

<img
  className="portrait"
  src="img/Kmesh-icon.png"
  alt="Kmesh logo"
/>

This improves accessibility while following standard JSX conventions.

貢獻者指南