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