fix(FriendLink): try moving loading tag to the front
Some checks failed
Deploy to Web Server / deploy (push) Has been cancelled

This commit is contained in:
aria 2025-08-04 07:00:36 +10:00
parent 638b20d41c
commit 0a85f2f487
Signed by: aria
SSH key fingerprint: SHA256:WqtcVnDMrv1lnUlNah5k31iywFUI/DV+5yHzCTO4Vds

View file

@ -3,7 +3,7 @@
const { name, image, target } = Astro.props;
---
<a href={`${target}`} target="_blank"><img src={image} width=176 height=62 alt={`${name}`} class="flex" decoding="async" loading="lazy" /></a>
<a href={`${target}`} target="_blank"><img loading="lazy" decoding="async" src={image} width=176 height=62 alt={`${name}`} class="flex" /></a>
<style>
img {
image-rendering: pixelated;