--- import type { GuideFileType } from '../lib/guide'; import GuideListItem from './GuideListItem.astro'; export interface Props { heading: string; guides: GuideFileType[]; } const { heading, guides } = Astro.props; ---

{heading}

{guides.map((guide) => )}
View All Guides  →