Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

navigationitems.js 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. const items = {
  2. items: [
  3. {
  4. icon: 'T',
  5. text: 'Test',
  6. route: '/test',
  7. open: false,
  8. },
  9. {
  10. icon: 'H',
  11. text: 'Home',
  12. route: '/home',
  13. open: true,
  14. },
  15. {
  16. icon: 'A',
  17. text: 'About',
  18. open: false,
  19. children: [
  20. {
  21. icon: 't',
  22. text: 'About Us',
  23. route: '/about/us',
  24. },
  25. {
  26. icon: 't',
  27. text: 'About Timeshare',
  28. route: '/about/timeshare',
  29. },
  30. ],
  31. },
  32. {
  33. icon: 'T',
  34. text: 'Timeshare',
  35. open: false,
  36. children: [
  37. {
  38. icon: 's',
  39. text: 'To Sell',
  40. route: '/timeshare/tosell',
  41. },
  42. {
  43. icon: 'b',
  44. text: 'To Buy',
  45. route: '/timeshare/tobuy',
  46. },
  47. {
  48. icon: 'f',
  49. text: 'FAQ',
  50. route: '/timeshare/faq',
  51. },
  52. ],
  53. },
  54. {
  55. icon: 'C',
  56. text: 'Commercial',
  57. open: false,
  58. children: [
  59. {
  60. icon: 's',
  61. text: 'Search',
  62. route: '/commercial/search',
  63. },
  64. {
  65. icon: 'r',
  66. text: 'To Rent',
  67. route: '/commercial/torent',
  68. },
  69. {
  70. icon: 's',
  71. text: 'To Sell',
  72. route: '/commercial/tosell',
  73. },
  74. ],
  75. },
  76. {
  77. icon: 'R',
  78. text: 'Residential',
  79. open: false,
  80. children: [
  81. {
  82. icon: 's',
  83. text: 'Search',
  84. route: '/residential/search',
  85. },
  86. {
  87. icon: 'r',
  88. text: 'To Rent',
  89. route: '/residential/torent',
  90. },
  91. {
  92. icon: 's',
  93. text: 'To Sell',
  94. route: '/residential/tosell',
  95. },
  96. ],
  97. },
  98. {
  99. icon: 'C',
  100. text: 'Contact Us',
  101. route: '/contactus',
  102. },
  103. ],
  104. };
  105. export default items;