Industries we serve
AI-driven solutions to fit your specific business needs.
Get set up in minutes
Create your receptionist in 15 minutes and start receiving calls immediately.
Get StartedTry it for 30 days risk-free with our money-back guarantee.
All(".filter-buttons [data-filter]"); buttons.forEach(btn => { btn.addEventListener("click", () => { const category = btn.getAttribute("data-filter"); /* REMOVE active from all buttons */ buttons.forEach(b => b.classList.remove("active")); /* ADD active to clicked button */ btn.classList.add("active"); /* FILTER ITEMS */ items.forEach(item => { const name = item.querySelector(".tab-link")?.innerText.trim(); if (category === "All" || name === category) { item.style.display = "block"; } else { item.style.display = "none"; } }); }); }); });