--- import { Image } from "astro:assets"; import IconButton from "@components/ui/IconButton.astro"; import { ButtonLink } from "@components/ui"; import ArrowLeft from "@assets/icons/arrow-left.svg"; import ArrowRight from "@assets/icons/arrow-right.svg"; interface Props { title: string; description: string; website?: { href: string; external?: boolean; track?: boolean; trackEvent?: string; }; repository?: string; repositoryTrackEvent?: string; images: { src: ImageMetadata; alt: string; }[]; even?: boolean; } const { title, description, website, repository, repositoryTrackEvent, images, } = Astro.props; const hasCarousel = images.length > 1; ---
{description}