--- /** * NoteBox — maps to LaTeX `notebox` env. * Default use: chapter overviews, neutral info, learning objectives. * Family: blue accent (info). */ interface Props { title?: string; } const { title = 'Note' } = Astro.props; ---