--- interface Props { title: string; body: string; href: string; year?: string; language: string; languageColor: string; contribution?: string; tags?: string[]; image?: string; imageAlt?: string; } const { href, title, body, language, languageColor, contribution = "", year, tags, image, imageAlt, } = Astro.props; ---