--- import { type CollectionEntry } from 'astro:content'; export interface Props { cat: CollectionEntry<'cats'>; } const { cat } = Astro.props; ---
{cat.data.image.alt}

{cat.data.name}

{cat.data.owner.name}