// Initialization for ES Users import { Carousel, initTWE, } from "tw-elements"; initTWE({ Carousel }); function toggleCollapse(id) { const content = document.getElementById(id); if (content.style.display === "none" || content.style.display === "") { content.style.display = "block"; } else { content.style.display = "none"; } }