--- import { getGhostImgPath } from "../utils"; import type { Settings, Author } from "@matthiesenxyz/astro-ghostcms/api"; export type Props = { author: Author; wide?: boolean; addClass?: string; settings: Settings; showCover?: boolean; }; const { author, wide = false, settings, showCover = true, } = Astro.props as Props; ---