---
import type { Author } from '../schemas/authors'
import config from 'virtual:starlight-ghostcms/config';
interface Props {
author: Author
}
const { author } = Astro.props
const isLink = author.slug !== undefined
const Element = isLink ? 'a' : 'div'
---
{author.profile_image &&
}
{author.name}
{author.bio &&
{author.bio}
}