Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 

37 rindas
681 B

  1. // assets
  2. import { LoginOutlined, ProfileOutlined } from '@ant-design/icons';
  3. // icons
  4. const icons = {
  5. LoginOutlined,
  6. ProfileOutlined
  7. };
  8. // ==============================|| MENU ITEMS - EXTRA PAGES ||============================== //
  9. const pages = {
  10. id: 'authentication',
  11. title: 'Authentication',
  12. type: 'group',
  13. children: [
  14. {
  15. id: 'login1',
  16. title: 'Login',
  17. type: 'item',
  18. url: '/login',
  19. icon: icons.LoginOutlined,
  20. // target: true
  21. },
  22. {
  23. id: 'register1',
  24. title: 'Register',
  25. type: 'item',
  26. url: '/register',
  27. icon: icons.ProfileOutlined,
  28. // target: true
  29. }
  30. ]
  31. };
  32. export default pages;