--- import { getCollection } from "astro:content"; const { currentSlug, collection = "archicrat-ia", basePath = "/archicrat-ia", label = "Table des matières" } = Astro.props; const entries = (await getCollection(collection)) .sort((a, b) => (a.data.order ?? 0) - (b.data.order ?? 0)); const href = (slug) => `${basePath}/${slug}/`; ---