mirror of
https://github.com/kogakure/website-astro-stefanimhoff.de.git
synced 2026-02-03 20:15:27 +00:00
fix: update API of toolbox component
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
import { Image } from '@astrojs/image/components';
|
import { Img } from 'astro-imagetools/components';
|
||||||
import { Link } from '.';
|
import { Link } from '.';
|
||||||
|
|
||||||
import type { ToolsProps } from '../data/tools';
|
import type { ToolsProps } from '../data/tools';
|
||||||
@@ -16,14 +16,7 @@ const { tools } = Astro.props;
|
|||||||
tools.map(({ name, url, image }) => (
|
tools.map(({ name, url, image }) => (
|
||||||
<li>
|
<li>
|
||||||
<Link href={url} title={name}>
|
<Link href={url} title={name}>
|
||||||
<Image
|
<Img alt={name} aspect={1} format="avif" height={200} src={image} width={200} />
|
||||||
alt={name}
|
|
||||||
aspectRatio="1:1"
|
|
||||||
format="avif"
|
|
||||||
height={200}
|
|
||||||
src={image}
|
|
||||||
width={200}
|
|
||||||
/>
|
|
||||||
</Link>
|
</Link>
|
||||||
</li>
|
</li>
|
||||||
))
|
))
|
||||||
|
|||||||
Reference in New Issue
Block a user