--- import BaseLayout from "../layouts/BaseLayout.astro"; import { getCollection } from "astro:content"; const title = "Git Repositories"; const repos = await getCollection("git"); repos.sort((a, b) => a.slug.localeCompare(b.slug)); ---