export function failure(text: string): void {
const note = document.createElement("div")
note.className = "flex flex-col font-body items-center h-screen italic justify-center leading-relaxed px-4 text-center text-base text-white"
note.innerHTML = `
${text}
` document.body.appendChild(note) // Remove loader const elm = document.querySelector("#elm") elm?.parentNode?.removeChild(elm) }