"use client"; import ReactMarkdown from "react-markdown"; interface MarkdownContentProps { content: string; /** Use 'compact' for small spaces like core notes, 'full' for large areas */ size?: "compact" | "full"; } export default function MarkdownContent({ content, size = "full", }: MarkdownContentProps) { const isCompact = size === "compact"; return (