Skip to content

Commit

Permalink
Merge pull request #66 from DanielBrito/issue42
Browse files Browse the repository at this point in the history
improve accessibility - part 2
  • Loading branch information
DanielBrito authored Aug 22, 2024
2 parents 73ded45 + dd87216 commit 90e62e6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="Daniel Brito, escritor, artista, arte, poesia">
<meta name="author" content="Daniel Brito">
<meta name="description"
content="Site com as publicações de Daniel Brito, incluindo zines e livros.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>POEMIX | Daniel Brito</title>

Expand Down
1 change: 1 addition & 0 deletions src/components/PdfWrapper/PdfWrapper.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ function PdfWrapper({id}) {
className="pdf-iframe"
id="pdf-iframe"
allow={"autoplay"}
title={"Visualizador de PDF"}
>
</iframe>
</div>
Expand Down
3 changes: 2 additions & 1 deletion src/components/PublicationItem/PublicationItem.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ function PublicationItem({ publication }) {
return (
<div className="publication-item-wrapper">
<div className="thumb-wrapper">
<Link to={publication.path} title={`Ler ${publication.name.toUpperCase()}`}>
<Link to={publication.path}>
<img
src={publication.thumb}
className="publication-thumb"
width={"339px"}
height={"480px"}
title={`Ler ${publication.name.toUpperCase()}`}
/>
</Link>
</div>
Expand Down

0 comments on commit 90e62e6

Please sign in to comment.