Chatroom 1
Chatroom 2
Chatroom 3
Chatroom 4
Chatroom 5
Chatroom 6
Chatroom 7
`;
}
// Add event listeners to the tabs
document.querySelectorAll('.tab').forEach(tab => {
tab.addEventListener('click', function() {
const handle = this.getAttribute('data-handle');
changeChatroom(handle);
});
});