Add header component and side menu; update layout and styles

This commit is contained in:
2025-09-07 02:49:32 -04:00
parent 6b80865d6a
commit e61ba2b46a
27 changed files with 978 additions and 36 deletions

29
src/routers/url-routes.ts Normal file
View File

@@ -0,0 +1,29 @@
/**
* Copyright 2024 Phenix Real Time Solutions, Inc. Confidential and Proprietary. All Rights Reserved.
*/
import {faStream, faChartBar, faLayerGroup, faCheckSquare, faTh} from '@fortawesome/free-solid-svg-icons';
export default {
login: {path: '/login'},
channels: {
path: 'channels',
icon: faStream
},
rooms: {
path: 'rooms',
icon: faLayerGroup
},
analytics: {
path: 'analytics',
icon: faChartBar
},
qos: {
path: 'qos',
icon: faCheckSquare,
notSupported: true
},
dashboard: {
path: 'dashboard',
icon: faTh
}
};