Redesign chat UI and remove location sharing

Modernizes the chat and join pages with new styles, improved layouts, and enhanced user experience using custom CSS and FontAwesome icons. Removes location sharing functionality from both frontend and backend, including related templates and code. Adds connection status indicators, notification system, and keyboard shortcuts for better usability.
This commit is contained in:
apiboomer
2025-08-27 03:14:15 +03:00
parent e56c743851
commit 4bd3c48010
6 changed files with 1005 additions and 219 deletions

View File

@@ -10,15 +10,6 @@ const generateMessage = (username, text) => {
};
};
const generateLocationMessage = (username, url) => {
return {
username: username,
url: url,
createdAt: new Date().getTime(),
};
};
module.exports = {
generateMessage,
generateLocationMessage,
};