|
- import { faChartArea, faIdCard, faIdCardAlt, faMoneyCheck,
- faUniversity, faUserCircle, faUserTie } from '@fortawesome/free-solid-svg-icons';
-
- export const mainMenuItems: any[] = [
- {
- text: '',
- fa: faUniversity,
- url: './#canvas'
- },
- {
- text: 'SFM',
- icon: 'more-vertical',
- items: [
- { text: 'Summary', fa: faChartArea, url: './#dashboard'},
- { text: '--', separator: 'true' },
- { text: 'Logout', icon: 'logout', url: './#login'}]
- },
- {
- text: 'Loans',
- icon: 'dollar',
- items: [
- { text: 'Start New Loan', icon: 'plus', url: './#edit-loan/' },
- { text: 'List All New', icon: 'table' , url: './#list-all-loans' },
- ]
- },
- {
- text: 'Reward',
- icon: 'percent',
- items: [
- { text: 'List All', icon: 'table', url: '#' },
- { text: 'By Broker', icon: 'table', url: '#' },
- { text: '--', separator: 'true' },
- { text: 'Lender Monthly Uploads', icon: 'attachment' , url: './#uploads'}
- ]
- },
- {
- text: 'Clients',
- icon: 'user',
- items: [
- { text: 'Add ', icon: 'plus', url: '#' },
- { text: 'List All', fa: faIdCard },
- { text: '--', separator: 'true' },
- { text: 'Search' , icon: 'search'},
- { text: '--', separator: 'true' },
- { text: 'Broadcast', icon: 'email' },
- ]
- },
-
- {
- text: 'Brokers',
- fa: faUserCircle,
- items: [
- { text: 'Add ', icon: 'plus', url: '#' },
- { text: 'List All', fa: faIdCardAlt},
- { text: '--', separator: 'true' },
- { text: 'Search' , icon: 'search'},
- { text: '--', separator: 'true' },
- { text: 'Broadcast' , icon : 'email'},
- { text: '--', separator: 'true' },
- { text: 'UnPaid', fa : faMoneyCheck },
- ]
- }
- ];
-
-
- export const brokerMenuItems: any[] = [
- {
- text: '|',
- fa: faUserTie,
- },
- {
- text: 'My Loans',
- icon: 'categorize',
- url: './#broker-loan-list'
- },
- {
- text: 'My Earnings',
- icon: 'dollar',
- url: './#broker-reward'
- },
- {
- text: 'Profile',
- fa: faIdCard,
- url: './#broker-profile'
- },
-
- ];
-
- export const userMenuItems: any[] = [
- {
- text: '|',
- fa: faUserCircle,
- },
- {
- text: 'My Loans',
- icon: 'categorize',
- url: './#client-loan-list'
- },
- {
- text: 'Profile',
- fa: faIdCard,
- url: './#client-profile'
- },
- ];
-
- export const peopleMenuItems: any[] = [
- {
- text: 'people',
- fa: faUniversity,
- url: './#canvas'
- },
- ];
|