feat: add Admin and Settings menu with collapsible submenus and placeholder pages
This commit is contained in:
@@ -2,6 +2,12 @@
|
||||
const API = '';
|
||||
let currentChatId = null;
|
||||
|
||||
// Toggle collapsible nav sections (Admin, Settings)
|
||||
function toggleNavSection(id) {
|
||||
const el = document.getElementById(id);
|
||||
if (el) el.style.display = el.style.display === 'none' ? 'block' : 'none';
|
||||
}
|
||||
|
||||
// ============================================================
|
||||
// NAVIGATION
|
||||
// ============================================================
|
||||
|
||||
Reference in New Issue
Block a user