aria.coffee/src/components/FriendLink.astro
2025-07-25 13:29:58 +10:00

18 lines
No EOL
547 B
Text

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