export function helloCard(text) { const el = document.createElement("div"); el.className = "card"; el.textContent = text; return el; }