Skip to content

Commit

Permalink
Fix img alt
Browse files Browse the repository at this point in the history
  • Loading branch information
O4epegb committed Oct 27, 2024
1 parent 515b5fd commit 7c1866c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/web/src/components/Logo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Link from 'next/link'
export const Logo = () => {
return (
<Link className="inline-flex items-center space-x-2" href="/">
<img width="128" height="128" src="/logo.png" className="h-8 w-8" />
<img alt="App logo" width="128" height="128" src="/logo.png" className="h-8 w-8" />
<h1 className="whitespace-nowrap text-center text-2xl sm:text-4xl">DCSS Stats</h1>
</Link>
)
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/screens/main/Streams.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const Streams = () => {
<img
width={640}
height={360}
alt={`${stream.username} stream`}
alt={`${stream.username} stream thumbnail`}
src={stream.thumbnail.replace('{width}', '640').replace('{height}', '360')}
className="transition-all hover:-translate-y-1 hover:translate-x-1 hover:shadow-[-4px_4px_#772ce8,-3px_3px_#772ce8,-2px_2px_#772ce8,-1px_1px_#772ce8]"
/>
Expand Down

0 comments on commit 7c1866c

Please sign in to comment.