mirror of
https://git.aria.coffee/BuyMyAria/aria.coffee.git
synced 2025-08-13 20:29:56 +00:00
fix(FriendLink): try moving loading tag to the front
This commit is contained in:
parent
638b20d41c
commit
0a85f2f487
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
const { name, image, target } = Astro.props;
|
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>
|
<style>
|
||||||
img {
|
img {
|
||||||
image-rendering: pixelated;
|
image-rendering: pixelated;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue