Compare commits

...

2 commits

View file

@ -1,9 +1,9 @@
---
// import { Image, Picture } from "astro:assets";
import { Image, Picture } from "astro:assets";
const { name, image, target } = Astro.props;
---
<a href={`${target}`} target="_blank"><img src={image} width=176 height=62 alt={`${name}`} class="flex" decoding="async" loading="lazy" /></a>
<a href={`${target}`} target="_blank"><Image loading="lazy" decoding="async" src={image} width=176 height=62 alt={`${name}`} class="flex" /></a>
<style>
img {
image-rendering: pixelated;