--- export type GlossaryPortalGridItem = { href: string; title: string; description: string; meta: string; }; export interface Props { items?: GlossaryPortalGridItem[]; secondary?: boolean; } const { items = [], secondary = false, } = Astro.props; ---
{items.map((item) => ( {item.title} {item.description} {item.meta} ))}