--- import { Icon } from "astro-icon/components"; import TechnologyBadge from "./TechnologyBadge.astro"; interface Props { title: string; summary: string; tags: string[]; detailsLink?: string; githubLink?: string; onlineLink?: string; } const { title, summary, tags, detailsLink, githubLink, onlineLink } = Astro.props; ---

{title}

{summary}

{detailsLink && Detalles } {githubLink && GitHub } {onlineLink && En lĂ­nea }
{tags.map(tag => ( ))}