export function SideNote({ children, title }: { children: React.ReactNode; title?: string }) {
return (
<span role="note" className="side-note">
{title ? <strong>{title}</strong> : null}
{children}
</span>
);
}