first commit

This commit is contained in:
Patrick
2026-05-01 20:02:13 +02:00
commit 75fb753fc0
77 changed files with 4793 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
// ═══════════════════════════════════════════════════════
// Lorem Ipsum
// ═══════════════════════════════════════════════════════
async function generateLorem() {
const d = await apiPost('/api/lorem', { paragraphs: parseInt(document.getElementById('loremCount').value) });
if (d.success) document.getElementById('loremOutput').value = d.result;
}