mirror of
https://git.aria.coffee/BuyMyAria/aria.coffee.git
synced 2025-07-28 02:59:56 +00:00
18 lines
No EOL
547 B
Text
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> |