Works With Your Existing Tools & Workflows
Our Platform Works With Most Popular Business Tools And Services.
Connect And Automate Your Entire Workflow.
document.addEventListener('DOMContentLoaded', function() { const container = document.getElementById('integration-grids-container'); const tabs = document.querySelectorAll('.tab');
// Create grids for each category Object.keys(integrations).forEach(category => { const grid = document.createElement('div'); grid.className = `integration-grid ${category === 'ecommerce' ? 'active' : ''}`; grid.id = category;
integrations[category].forEach(tool => {
const card = document.createElement('div');
card.className = 'tool-card';
card.innerHTML = `
${tool.name}
`;
grid.appendChild(card);
});
container.appendChild(grid); });
// Handle tab switching tabs.forEach(tab => { tab.addEventListener('click', () => { tabs.forEach(t => t.classList.remove('active')); tab.classList.add('active');
const category = tab.dataset.category; document.querySelectorAll('.integration-grid').forEach(grid => { grid.classList.remove('active'); }); document.getElementById(category).classList.add('active'); }); }); });