mirror of
https://github.com/BradNut/awesome-uses
synced 2025-09-08 17:40:31 +00:00
Lazy load avatars. re #578
This commit is contained in:
parent
e29a991247
commit
ee7be1dcdf
1 changed files with 7 additions and 1 deletions
|
|
@ -33,7 +33,13 @@ export default function Person({ person, currentTag }) {
|
|||
<PersonWrapper>
|
||||
<PersonInner>
|
||||
<header>
|
||||
<img width="50" height="50" src={img} alt={person.name} />
|
||||
<img
|
||||
width="50"
|
||||
height="50"
|
||||
src={img}
|
||||
alt={person.name}
|
||||
loading="lazy"
|
||||
/>
|
||||
<h3>
|
||||
<a href={person.url} target="_blank" rel="noopener noreferrer">
|
||||
{person.name}
|
||||
|
|
|
|||
Loading…
Reference in a new issue