2024-12-26 22:45:38 +00:00
|
|
|
---
|
|
|
|
import { Image } from "astro:assets";
|
2025-03-13 21:45:16 +00:00
|
|
|
import type { CollectionEntry } from "astro:content";
|
2024-12-26 22:45:38 +00:00
|
|
|
|
|
|
|
type Props = {
|
2025-03-13 21:45:16 +00:00
|
|
|
collection: CollectionEntry<"projects">;
|
2024-12-26 22:45:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const { collection } = Astro.props;
|
|
|
|
---
|
|
|
|
|
|
|
|
<li>
|
2025-02-12 13:03:43 +00:00
|
|
|
<article class="flex-col overflow-clip">
|
|
|
|
<a href={`/${collection.collection}/${collection.slug}`} class="group">
|
2025-02-13 12:54:26 +00:00
|
|
|
<div class="overflow-hidden rounded-sm">
|
2025-02-12 13:03:43 +00:00
|
|
|
<Image
|
|
|
|
src={collection.data.image.url}
|
|
|
|
alt={collection.data.image.alt}
|
|
|
|
title={collection.data.title}
|
|
|
|
loading="eager"
|
2025-02-13 16:55:09 +00:00
|
|
|
class="aspect-[2/1] object-cover transition-all duration-300 ease-in-out group-hover:brightness-50"
|
2025-02-12 13:03:43 +00:00
|
|
|
fit="cover"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</a>
|
2024-12-26 22:45:38 +00:00
|
|
|
</article>
|
|
|
|
</li>
|