|
- import { faChartArea, faIdCard, faIdCardAlt, faMoneyCheck,
- faUniversity, faUserCircle, faUserTie } from '@fortawesome/free-solid-svg-icons';
-
- export const mainMenuItems: any[] = [
- {
- 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', icon: 'table' , url: './#list-all-loans' },
- { text: '--', separator: 'true' },
- { text: 'Income', icon: 'dollar', url: './#income' },
- { text: '--', separator: 'true' },
- { text: 'Uploads', icon: 'dollar', url: './#loan-uploads' },
- ]
- },
- {
- text: 'Reward',
- icon: 'percent',
- items: [
- { text: 'Overview', icon: 'table', url: './#reward-overview' },
- { text: 'List All', icon: 'table', url: './#list-all-rewards' },
- { text: '--', separator: 'true' },
- { text: 'By Broker', icon: 'table', url: './#list-reward-by-broker' },
- { text: '--', separator: 'true' },
- { text: 'Not Paid', icon: 'attachment' , url: './#reward-unpaid'},
- { text: 'Paid', icon: 'attachment' , url: './#reward-paid'},
- ]
- },
- {
- text: 'People',
- icon: 'user',
- items: [
- { text: 'Add ', icon: 'plus', url: './#add-people' },
- { text: 'List All', fa: faIdCard , url: './#list-all-client'},
- { text: '--', separator: 'true' },
- { text: 'Broadcast', icon: 'email', url: './#send-to-all-client'},
- { text: '--', separator: 'true' },
- { text: 'Broadcast', icon: 'email', url: './#send-to-all-client'},
- ]
- },
- ];
-
-
- export const brokerMenuItems: any[] = [
-
- {
- 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: 'My Loans',
- icon: 'categorize',
- url: './#client-loan-list'
- },
- {
- text: 'Profile',
- fa: faIdCard,
- url: './#client-profile'
- },
- ];
-
- export const peopleMenuItems: any[] = [
- {
- text: 'people',
- fa: faUniversity,
- },
- ];
|