--- import { Icon } from "astro-icon/components"; import Container from "../Container.astro"; import { getCollection } from "astro:content"; const courses = await getCollection( "courses", ({ data }) => data.draft != true, ); const { title } = Astro.props; ---