--- import type { Author } from '../schemas/authors' import { facebook } from '../utils/api' interface Props { author: Author } const { author } = Astro.props ---
{author.profile_image && {author.name}}
{author.name}
{author.website && } {author.facebook && } {author.twitter && } {author.bio &&
{author.bio}
}