mirror of
https://git.aria.coffee/BuyMyAria/aria.coffee.git
synced 2025-07-28 02:59:56 +00:00
fix: attempted image fix
This commit is contained in:
parent
39540fcde5
commit
305b7d4272
7 changed files with 32 additions and 20 deletions
|
@ -18,7 +18,7 @@ export default defineConfig({
|
||||||
site: "https://aria.coffee",
|
site: "https://aria.coffee",
|
||||||
integrations: [
|
integrations: [
|
||||||
preact(),
|
preact(),
|
||||||
tailwind(),
|
// tailwind(),
|
||||||
icon(),
|
icon(),
|
||||||
mdx(),
|
mdx(),
|
||||||
matomo({
|
matomo({
|
||||||
|
|
|
@ -3,14 +3,16 @@ import { Image, Picture } from "astro:assets";
|
||||||
|
|
||||||
const { name, image, target } = Astro.props;
|
const { name, image, target } = Astro.props;
|
||||||
---
|
---
|
||||||
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="max" decoding="async" loading="lazy" formats={['avif', 'webp']} /></a>
|
<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>
|
<style>
|
||||||
img {
|
img {
|
||||||
image-rendering: pixelated;
|
image-rendering: pixelated;
|
||||||
min-width: 88px;
|
min-width: 176px;
|
||||||
width: 176px;
|
width: 176px;
|
||||||
min-height: 31px;
|
max-width: 176px;
|
||||||
|
min-height: 62px;
|
||||||
height: 62px;
|
height: 62px;
|
||||||
padding: 4px;
|
max-height: 62px;
|
||||||
|
scale: 1;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
|
@ -3,14 +3,16 @@ import { Image, Picture } from "astro:assets";
|
||||||
|
|
||||||
const { name, image, target } = Astro.props;
|
const { name, image, target } = Astro.props;
|
||||||
---
|
---
|
||||||
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="high" decoding="async" loading="lazy" formats={['avif', 'webp']} /></a>
|
<a href={`${target}`} target="_blank"><Picture src={image} width=176 height=62 alt={`${name}`} class="flex" quality="high" decoding="async" loading="lazy" formats={['avif', 'webp']} /></a>
|
||||||
<style>
|
<style>
|
||||||
img {
|
img {
|
||||||
image-rendering: pixelated;
|
image-rendering: pixelated;
|
||||||
min-width: 88px;
|
min-width: 176px;
|
||||||
width: 176px;
|
width: 176px;
|
||||||
min-height: 31px;
|
max-width: 176px;
|
||||||
|
min-height: 62px;
|
||||||
height: 62px;
|
height: 62px;
|
||||||
|
max-height: 62px;
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
|
@ -3,14 +3,16 @@ import { Image, Picture } from "astro:assets";
|
||||||
|
|
||||||
const { name, image, target } = Astro.props;
|
const { name, image, target } = Astro.props;
|
||||||
---
|
---
|
||||||
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="low" decoding="async" loading="lazy" formats={['avif', 'webp']} /></a>
|
<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>
|
<style>
|
||||||
img {
|
img {
|
||||||
image-rendering: pixelated;
|
image-rendering: pixelated;
|
||||||
min-width: 88px;
|
min-width: 176px;
|
||||||
width: 176px;
|
width: 176px;
|
||||||
min-height: 31px;
|
max-width: 176px;
|
||||||
|
min-height: 62px;
|
||||||
height: 62px;
|
height: 62px;
|
||||||
|
max-height: 62px;
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
|
@ -3,14 +3,16 @@ import { Image, Picture } from "astro:assets";
|
||||||
|
|
||||||
const { name, image, target } = Astro.props;
|
const { name, image, target } = Astro.props;
|
||||||
---
|
---
|
||||||
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="low" decoding="async" loading="lazy" formats={['webp']} /></a>
|
<a href={`${target}`} target="_blank"><Picture src={image} width=176 height=62 alt={`${name}`} class="flex" quality="low" decoding="async" loading="lazy" formats={['webp']} /></a>
|
||||||
<style>
|
<style>
|
||||||
img {
|
img {
|
||||||
image-rendering: pixelated;
|
image-rendering: pixelated;
|
||||||
min-width: 88px;
|
min-width: 176px;
|
||||||
width: 176px;
|
width: 176px;
|
||||||
min-height: 31px;
|
max-width: 176px;
|
||||||
|
min-height: 62px;
|
||||||
height: 62px;
|
height: 62px;
|
||||||
|
max-height: 62px;
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
|
@ -3,14 +3,16 @@ import { Image, Picture } from "astro:assets";
|
||||||
|
|
||||||
const { name, image, target } = Astro.props;
|
const { name, image, target } = Astro.props;
|
||||||
---
|
---
|
||||||
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="mid" decoding="async" loading="lazy" formats={['avif', 'webp']} /></a>
|
<a href={`${target}`} target="_blank"><Picture src={image} width=176 height=62 alt={`${name}`} class="flex" quality="mid" decoding="async" loading="lazy" formats={['avif', 'webp']} /></a>
|
||||||
<style>
|
<style>
|
||||||
img {
|
img {
|
||||||
image-rendering: pixelated;
|
image-rendering: pixelated;
|
||||||
min-width: 88px;
|
min-width: 176px;
|
||||||
width: 176px;
|
width: 176px;
|
||||||
min-height: 31px;
|
max-width: 176px;
|
||||||
|
min-height: 62px;
|
||||||
height: 62px;
|
height: 62px;
|
||||||
|
max-height: 62px;
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
|
@ -3,14 +3,16 @@ import { Image, Picture } from "astro:assets";
|
||||||
|
|
||||||
const { name, image, target } = Astro.props;
|
const { name, image, target } = Astro.props;
|
||||||
---
|
---
|
||||||
<a href={`${target}`} target="_blank"><Picture src={image} width={88} height={31} alt={`${name}`} class="flex" quality="mid" decoding="async" loading="lazy" formats={['webp']} /></a>
|
<a href={`${target}`} target="_blank"><Picture src={image} width=176 height=62 alt={`${name}`} class="flex" quality="mid" decoding="async" loading="lazy" formats={['webp']} /></a>
|
||||||
<style>
|
<style>
|
||||||
img {
|
img {
|
||||||
image-rendering: pixelated;
|
image-rendering: pixelated;
|
||||||
min-width: 88px;
|
min-width: 176px;
|
||||||
width: 176px;
|
width: 176px;
|
||||||
min-height: 31px;
|
max-width: 176px;
|
||||||
|
min-height: 62px;
|
||||||
height: 62px;
|
height: 62px;
|
||||||
|
max-height: 62px;
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
Loading…
Add table
Add a link
Reference in a new issue