Skip to content

Commit

Permalink
chore: add alt text to footer logo images
Browse files Browse the repository at this point in the history
  • Loading branch information
dsanders11 authored Dec 4, 2024
1 parent 1795007 commit c329843
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/theme/Footer/Layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,25 @@ export default function FooterLayout({
Hosting and infrastructure graciously provided by
</div>
<div className={styles.logoCluster}>
<img src="/assets/third-parties/azure.png" />
<img src="/assets/third-parties/azure.png" alt="Azure Logo" />
<img
src="/assets/third-parties/heroku_dark.png"
alt="Heroku Logo"
className={styles.darkOnly}
/>
<img
src="/assets/third-parties/heroku_light.png"
alt="Heroku Logo"
className={styles.lightOnly}
/>
<img
src="/assets/third-parties/datadog_dark.png"
alt="DataDog Logo"
className={styles.darkOnly}
/>
<img
src="/assets/third-parties/datadog_light.png"
alt="DataDog Logo"
className={styles.lightOnly}
/>
</div>
Expand Down

0 comments on commit c329843

Please sign in to comment.