Fix email footer: add missing alt text to store badge images

pull/24637/head
Théo 2025-12-17 06:44:28 +01:00 committed by GitHub
parent f0b069adb9
commit ec28df279d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -7,14 +7,14 @@ export const ImmichFooter = () => (
<Column align="center" className="w-6/12 sm:w-full">
<div>
<Link href="https://play.google.com/store/apps/details?id=app.alextran.immich" className="object-contain">
<Img className="max-w-full" src={`https://immich.app/img/google-play-badge.png`} />
<Img alt="Get it on Google Play" className="max-w-full" src={`https://immich.app/img/google-play-badge.png`} />
</Link>
</div>
</Column>
<Column align="center" className="w-6/12 sm:w-full">
<div className="h-full p-6">
<Link href="https://apps.apple.com/sg/app/immich/id1613945652">
<Img src={`https://immich.app/img/ios-app-store-badge.png`} alt="Immich" className="max-w-full" />
<Img alt="Download on the App Store" className="max-w-full" src={`https://immich.app/img/ios-app-store-badge.png`} />
</Link>
</div>
</Column>