--- import ProjectCard from "./ProjectCard.astro" import * as m from "@/paraglide/messages" interface Props { projects: any[] // TODO Type this } const { projects } = Astro.props ---

{m.myProjects()}

{ projects.map( ({ data: { title, description, tags, heroImage, heroImageAlt }, slug }) => (
) ) }