Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add title to images #22

Merged
merged 2 commits into from
Feb 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export default function Navbar() {
<span className="contrast link">
<img
src={logo}
title='Heroic Games Launcher'
alt="Heroic Games Launcher"
height="32px"
width="32px"
Expand Down
12 changes: 10 additions & 2 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ const Home: NextPage = () => {
<img
src={img1}
alt="Heroic Games Launcher preview"
title='Heroic Games Launcher preview'
className="heroicPreview"
/>
</div>
Expand Down Expand Up @@ -106,6 +107,7 @@ const Home: NextPage = () => {
<img
src={img2}
alt="Game Page"
title='Game Page'
aria-label="Game Page"
loading="lazy"
/>
Expand Down Expand Up @@ -137,6 +139,7 @@ const Home: NextPage = () => {
<img
src={img3}
alt="Platform Selection"
title='Platform Selection'
aria-label="Platform Selection"
loading="lazy"
/>
Expand Down Expand Up @@ -169,6 +172,7 @@ const Home: NextPage = () => {
<a href={img4}>
<img
alt="Epic Store inside Heroic"
title='Epic Store inside Heroic'
aria-label="Epic Store inside Heroic"
src={img4}
loading="lazy"
Expand Down Expand Up @@ -200,6 +204,7 @@ const Home: NextPage = () => {
<a href={img8}>
<img
alt="Context Menu"
title='Context Menu'
aria-label="Context Menu"
src={img8}
loading="lazy"
Expand Down Expand Up @@ -231,6 +236,7 @@ const Home: NextPage = () => {
<a href={gif}>
<img
alt="Themes"
title='Themes'
aria-label="Themes"
src={gif}
loading="lazy"
Expand Down Expand Up @@ -294,6 +300,7 @@ const Home: NextPage = () => {
<a href={img6}>
<img
alt="Wine Settings"
title='Wine Settings'
aria-label="Wine Settings"
src={img6}
loading="lazy"
Expand Down Expand Up @@ -327,8 +334,9 @@ const Home: NextPage = () => {
<div>
<a href={img7}>
<img
alt="Epic Store inside Heroic"
aria-label="Epic Store inside Heroic"
alt="Heroic is supported in several languages"
title='Heroic is supported in several languages'
aria-label="Heroic is supported in several languages"
src={img7}
loading="lazy"
/>
Expand Down