--- import { Image } from "astro:assets"; const { title, src, alt, url } = Astro.props; interface Props { title?: string; src: any; alt: string; url: string; } const imageClass = "absolute inset-0 h-full w-full object-cover object-center transition duration-[600ms] ease-[cubic-bezier(0.45,0,0.55,1)] group-hover:scale-110"; const AnchorSVG = ` `; --- {alt}
{title}