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.
 
 

37 lines
744 B

  1. // assets
  2. import { ChromeOutlined, QuestionOutlined } from '@ant-design/icons';
  3. // icons
  4. const icons = {
  5. ChromeOutlined,
  6. QuestionOutlined
  7. };
  8. // ==============================|| MENU ITEMS - SAMPLE PAGE & DOCUMENTATION ||============================== //
  9. const support = {
  10. id: 'support',
  11. title: 'Support',
  12. type: 'group',
  13. children: [
  14. {
  15. id: 'sample-page',
  16. title: 'Sample Page',
  17. type: 'item',
  18. url: '/sample-page',
  19. icon: icons.ChromeOutlined
  20. },
  21. {
  22. id: 'documentation',
  23. title: 'Documentation',
  24. type: 'item',
  25. url: 'https://codedthemes.gitbook.io/mantis/',
  26. icon: icons.QuestionOutlined,
  27. external: true,
  28. target: true
  29. }
  30. ]
  31. };
  32. export default support;