--- import { hrefOfGlossaryEntry, type GlossaryEntry } from "../lib/glossary"; export interface Props { entries?: GlossaryEntry[]; wide?: boolean; } const { entries = [], wide = false, } = Astro.props; ---