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.

65 lines
2.0KB

  1. import { faChartArea, faChartPie, faIdCard, faIdCardAlt, faMoneyCheck, faUniversity, faUserCircle } from '@fortawesome/free-solid-svg-icons';
  2. export const mainMenuItems: any[] = [
  3. {
  4. text: '',
  5. fa: faUniversity,
  6. url: './#canvas'
  7. },
  8. {
  9. text: 'SFM',
  10. icon: 'more-vertical',
  11. items: [
  12. { text: 'Summary', fa: faChartArea, url: './#dashboard'},
  13. { text: '--', separator: "true" },
  14. { text: 'Logout', icon: 'logout', url: './#login'}]
  15. },
  16. {
  17. text: 'Loans',
  18. icon: 'dollar',
  19. items: [
  20. { text: 'Add', icon: 'plus', popup: "loanEdit" },
  21. { text: 'List All', icon: 'table' ,url: '#' },
  22. { text: '--', separator: "true" },
  23. { text: 'Export All Loans' , icon: "excel"},
  24. { text: '--', separator: "true" },
  25. { text: 'Search', icon: 'search' }
  26. ]
  27. },
  28. {
  29. text: 'Trails',
  30. icon: 'percent',
  31. items: [
  32. { text: 'List All', icon: 'table', url: '#' },
  33. { text: '--', separator: "true" },
  34. { text: 'Import From ...', icon : 'upload'}
  35. ]
  36. },
  37. {
  38. text: 'Clients',
  39. icon: 'user',
  40. items: [
  41. { text: 'Add ', icon: 'plus', url: '#' },
  42. { text: 'List All', fa: faIdCard },
  43. { text: '--', separator: "true" },
  44. { text: 'Search' ,icon: 'search'},
  45. { text: '--', separator: "true" },
  46. { text: 'Broadcast', icon:'email' },
  47. ]
  48. },
  49. {
  50. text: 'Brokers',
  51. fa: faUserCircle,
  52. items: [
  53. { text: 'Add ', icon: 'plus', url: '#' },
  54. { text: 'List All', fa: faIdCardAlt},
  55. { text: '--', separator: "true" },
  56. { text: 'Search' , icon: 'search'},
  57. { text: '--', separator: "true" },
  58. { text: 'Broadcast' , icon : 'email'},
  59. { text: '--', separator: "true" },
  60. { text: 'UnPaid', fa : faMoneyCheck },
  61. ]
  62. }
  63. ];