Broker System for Supercredit
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

92 lines
2.5KB

  1. import { faChartArea, faIdCard, faIdCardAlt, faMoneyCheck,
  2. faUniversity, faUserCircle, faUserTie } from '@fortawesome/free-solid-svg-icons';
  3. export const mainMenuItems: any[] = [
  4. {
  5. text: 'SFM',
  6. icon: 'more-vertical',
  7. items: [
  8. { text: 'Summary', fa: faChartArea, url: './#dashboard'},
  9. { text: '--', separator: 'true' },
  10. { text: 'Logout', icon: 'logout', url: './#login'}]
  11. },
  12. {
  13. text: 'Loans',
  14. icon: 'dollar',
  15. items: [
  16. { text: 'Start New Loan', icon: 'plus', url: './#edit-loan/' },
  17. { text: 'List All', icon: 'table' , url: './#list-all-loans' },
  18. { text: '--', separator: 'true' },
  19. { text: 'Income', icon: 'dollar', url: './#income' },
  20. { text: '--', separator: 'true' },
  21. { text: 'Uploads', icon: 'dollar', url: './#loan-uploads' },
  22. ]
  23. },
  24. {
  25. text: 'Reward',
  26. icon: 'percent',
  27. items: [
  28. { text: 'Overview', icon: 'table', url: './#reward-overview' },
  29. { text: 'List All', icon: 'table', url: './#list-all-rewards' },
  30. { text: '--', separator: 'true' },
  31. { text: 'By Broker', icon: 'table', url: './#list-reward-by-broker' },
  32. { text: '--', separator: 'true' },
  33. { text: 'Not Paid', icon: 'attachment' , url: './#reward-unpaid'},
  34. { text: 'Paid', icon: 'attachment' , url: './#reward-paid'},
  35. ]
  36. },
  37. {
  38. text: 'People',
  39. icon: 'user',
  40. items: [
  41. { text: 'Add ', icon: 'plus', url: './#add-people' },
  42. { text: 'List All', fa: faIdCard , url: './#list-all-client'},
  43. { text: '--', separator: 'true' },
  44. { text: 'Broadcast', icon: 'email', url: './#send-to-all-client'},
  45. { text: '--', separator: 'true' },
  46. { text: 'Broadcast', icon: 'email', url: './#send-to-all-client'},
  47. ]
  48. },
  49. ];
  50. export const brokerMenuItems: any[] = [
  51. {
  52. text: 'My Loans',
  53. icon: 'categorize',
  54. url: './#broker-loan-list'
  55. },
  56. {
  57. text: 'My Earnings',
  58. icon: 'dollar',
  59. url: './#broker-reward'
  60. },
  61. {
  62. text: 'Profile',
  63. fa: faIdCard,
  64. url: './#broker-profile'
  65. },
  66. ];
  67. export const userMenuItems: any[] = [
  68. {
  69. text: 'My Loans',
  70. icon: 'categorize',
  71. url: './#client-loan-list'
  72. },
  73. {
  74. text: 'Profile',
  75. fa: faIdCard,
  76. url: './#client-profile'
  77. },
  78. ];
  79. export const peopleMenuItems: any[] = [
  80. {
  81. text: 'people',
  82. fa: faUniversity,
  83. },
  84. ];