document.addEventListener('DOMContentLoaded', () => { const app = document.getElementById('app'); // Main app structure app.innerHTML = `

Templates

No template selected

Select a template from the list or create a new one

`; // Initialize feather icons feather.replace(); }); // Sample data for templates const templates = [ { id: "purchase_confirmation", name: "purchase_confirmation", language: "pt_BR", components: [ { type: "HEADER", format: "TEXT", text: "Compra Confirmada! 🔆", }, { type: "BODY", text: "E aí, campeão da energia limpa! Sua compra do kit solar {{1}} foi confirmada. Valor total: R$ {{2}}. Prepare-se para revolucionar sua forma de consumir energia! Acompanhe o status do seu pedido #{{3}} pelo nosso app.", example: { body_text: [["Premium 450W", "15.990,00", "YS-78945"]], }, }, { type: "FOOTER", text: "Yello Solar - Energia que não cai. Igual a gente.", }, ], status: "APPROVED", category: "transactional", }, // More templates... ];