import { t } from '../../i18n.js'; export function getRichCardTemplate(cell) { const data = cell.getData() || {}; const headerText = data.headerText || 'TITLE'; const content = data.content || ''; const cardType = data.cardType || 'standard'; const headerColor = data.headerColor || '#3b82f6'; const headerAlign = data.headerAlign || 'left'; const contentAlign = data.contentAlign || 'left'; return `

${t('rich_card')}

`; }