--- import DefaultPageLayout from "../layouts/default.astro"; import AuthorCard from "../components/AuthorCard.astro"; import { getAllAuthors, getSettings, invariant } from "@matthiesenxyz/astro-ghostcms/api"; let title = "All Authors"; let description = "All the authors"; const { authors } = await getAllAuthors(); const settings = await getSettings(); invariant(settings, 'Settings not found'); ---

{settings.title}

Collection of Tags
{authors.map((author) => (
))}