--- import { getCollection } from "astro:content" import ProjectCard from "../../components/ProjectCard.astro" import Layout from "../../layouts/Layout.astro" const projects = await getCollection("projects") ---

Projects

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