← Back to Home

🧩 Widget Marketplace

Drag-and-drop components for your dashboard

-
Widgets
-
Categories

Loading widgets...

Widget Preview

Copied!
`; // Create iframe with srcdoc const iframe = document.createElement('iframe'); iframe.style.cssText = 'width:100%;height:130px;border:none;border-radius:8px;background:#0d0d15;'; iframe.srcdoc = htmlContent; previewEl.innerHTML = 'Live Preview'; previewEl.appendChild(iframe); } // Show fullscreen preview modal function showPreview(widgetId) { const widget = allWidgets.find(w => w.id === widgetId); if (!widget) return; // Build full HTML content for preview const htmlContent = `
${widget.html}