}
});
});
+
+// Tabs
+document.querySelectorAll(".tabs li").forEach(tab => {
+ tab.addEventListener("click", () => {
+ // Remove is-active from all tabs
+ document.querySelectorAll(".tabs li").forEach(
+ t => t.classList.remove("is-active")
+ );
+
+ // Hide all tab content
+ document.querySelectorAll(".tab-content").forEach(
+ c => c.classList.add("is-hidden")
+ );
+
+ // Activate the clicked tab
+ tab.classList.add('is-active')
+
+ // Show the content
+ document.getElementById(tab.dataset.tab).classList.remove("is-hidden");
+ });
+});