--- import type { CollectionEntry } from 'astro:content' import { Image } from 'astro:assets' type Props = { author: CollectionEntry<'authors'> } const { author } = Astro.props const { name, avatar, bio } = author.data ---
{bio}