Compare commits

..

No commits in common. "66d72b482d4cc273823b7aa728081d03b44e34f9" and "638b20d41c9d6af42bb0fd098d0577c7a874f46e" have entirely different histories.

View file

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