aria.coffee/src/components/FriendLinkLow.astro
aria 283bab4e46
Some checks are pending
Deploy to Web Server / deploy (push) Waiting to run
fix+feat: fix css stuff and add more buttons
2025-08-03 16:58:11 +10:00

18 lines
No EOL
527 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}`} class="flex" quality="low" 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;
padding: 0px;
}
</style>