Add header component and side menu; update layout and styles
This commit is contained in:
29
src/routers/url-routes.ts
Normal file
29
src/routers/url-routes.ts
Normal 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
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user