--- interface Props { title: string; description: string; technologies?: string[]; url?: string; github?: string; featured?: boolean; } const { title, description, technologies, url, github, featured = false } = Astro.props; ---

{title}

{featured && ( Featured )}

{description}

{technologies && technologies.length > 0 && (
{technologies.map((tech) => ( {tech} ))}
)}
{url && ( Voir le site → )} {github && ( GitHub → )}