--- import Aside from './Aside.astro'; import type { CollectionEntry } from 'astro:content'; type Props = { entry: CollectionEntry<'docs'>; }; const { entry } = Astro.props; const { Content } = await entry.render(); ---