aria.coffee/src/components/FriendLink.astro
BuyMyMojo 5153e2deef
Move friend buttons to front page&re-encode images
Thanks specifically to @LeNooby09 for borking your website and making my
website have a borked image >:3
2025-04-04 22:53:37 +11:00

16 lines
No EOL
469 B
Text

---
import { Image, Picture } from "astro:assets";
const { name, image, target } = Astro.props;
---
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="max" decoding="async" loading="lazy" formats={['webp']} /></a>
<style>
img {
image-rendering: pixelated;
min-width: 88px;
width: 176px;
min-height: 31px;
height: 62px;
padding: 4px;
}
</style>