feat(FriendLink): move back to Image tag
All checks were successful
Deploy to Web Server / deploy (push) Successful in 11m29s
All checks were successful
Deploy to Web Server / deploy (push) Successful in 11m29s
This commit is contained in:
parent
0a85f2f487
commit
66d72b482d
1 changed files with 2 additions and 2 deletions
|
@ -1,9 +1,9 @@
|
||||||
---
|
---
|
||||||
// import { Image, Picture } from "astro:assets";
|
import { Image, Picture } from "astro:assets";
|
||||||
|
|
||||||
const { name, image, target } = Astro.props;
|
const { name, image, target } = Astro.props;
|
||||||
---
|
---
|
||||||
<a href={`${target}`} target="_blank"><img loading="lazy" decoding="async" src={image} width=176 height=62 alt={`${name}`} class="flex" /></a>
|
<a href={`${target}`} target="_blank"><Image 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