---
import { getImage } from "astro:assets";
import { Image } from "astro:assets";
import type { CollectionEntry } from "astro:content";
export interface Props {
project: CollectionEntry<"projects">;
}
const { project } = Astro.props;
const bgImage = await getImage({
format: "webp",
src: project.data.image,
width: 16,
height: 16,
quality: 0
});
---
{project.data.name}
{project.data.tags.join(", ")}
{project.data.summary}