mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-04-27 09:31:21 +00:00
refactor: lazy load images
This commit is contained in:
parent
c3bd1e8543
commit
29b9a8aeb6
1 changed files with 6 additions and 1 deletions
|
@ -14,7 +14,12 @@
|
|||
>
|
||||
<div class="flex flex-col gap-6">
|
||||
<div class="flex gap-6">
|
||||
<img src={logo} alt={name + ' logo'} class="h-12 w-12 rounded-sm object-contain" />
|
||||
<img
|
||||
src={logo}
|
||||
alt={name + ' logo'}
|
||||
class="h-12 w-12 rounded-sm object-contain"
|
||||
loading="lazy"
|
||||
/>
|
||||
<div class="grow">
|
||||
<h4 class="mb-0">{name}</h4>
|
||||
<p class="text-faded text-sm font-normal">{title}</p>
|
||||
|
|
Loading…
Reference in a new issue