--- import { Image } from "astro:assets"; interface Props { position?: "left" | "right"; image?: ImageMetadata; image_light?: ImageMetadata; alt?: string; href: string; title: string; description: string; label?: string; tags?: Array; } const { image, image_light, alt, href, title, description, label = "View Repository", tags = [], position = "left", } = Astro.props; const leftProject = position == "left"; ---
{ image && alt && ( <> {alt} {alt} {image_light && ( <> )} ) }

{title}

{description}

{ tags.map((tag) => (
{tag}
)) }